Albert Schilling

Results 7 comments of Albert Schilling

I have the same issue. Planned on using a `deleteAllEntries()` function to clean my collection in db before tests and placed the function in `beforeAll()`, but apparently other test functions...

Same here. It worked with `"react-scripts": "^3.4.4"` but not with `"react-scripts": "4.0.0"`. Probably due to the different Jest version used by the CRA 4? In your tests, according to your...

Update: As far as I can tell, Jest / jsdom can handle `canvas` elements if the library node canvas is installed as a peer dependency. https://github.com/jsdom/jsdom#canvas-support https://www.npmjs.com/package/canvas Thus, making this...

@mregula I think it suffices if you install `canvas` as a regular package. `npm i --save-dev canvas` At least, this is all we did. I guess JSDOM tries to import...

I have the same issue. Additionally, it does not matter how `onValueChange` is set. Even if it does not update the value, the user can still move the slider around.

@CodyJasonBennett Thanks for reviewing the PR (after it sat there for a long time untouched and sad ;) ) Have you reimplemented the feature in another way?