Hiroki Takahashi

Results 6 comments of Hiroki Takahashi

Event `wrapped.instance().forceUpdate()` doesn't re-render :( ``` let wrapped; beforeEach(() => { wrapped = mount( ); }); it("disables submit button if it's already uploading a file", () => { const uploadButton...

By the way, my uiConfig looks like this now. $scope.uiConfig = { calendar: { viewRender: function (view) { //some statements here }, renderCalender: $scope.renderCalender, height: 520, editable: true, header: {...

Is it possible to create a DB connection **_only once_** when running all the test files? What I'm trying to achieve is to 1. create a DB connection **_only when...

@david-minaya Thank you for your suggestion, but I'd avoid storing the DB connection to `globalThis`. The reason is that, in my app, all the helper functions that persist data are...

Also, this error comes with another error - Uncaught TypeError: React.findDOMNode is not a function As far as I understand, findDOMNode function was introduced from React v15.0. So, I'm wondering...

@nicks @landism Thanks for your replies. > have you tried using the tilt example projects? do they work for you, or do you get the same error? No I haven't...