Alex Krolick

Results 159 comments of Alex Krolick

Try using the `url-loader` helper and using JS import/requires: https://gist.github.com/alexkrolick/cb120d2e0f8450f1cd49d175f7a66dfe#file-webpack-config-js-L54-L57

See https://github.com/kentcdodds/cypress-testing-library/issues/30 - there are a number of custom commands

The custom queries we are trying to support aren't wrappers around jQuery attribute selectors; some of them use multiple DOM traversals to match labels to inputs, for example. `cy.get` isn't...

1. Under the current implementation, if a query fails because the thing you are looking for is in a shadow root, you can't see it in prettyDOM output, which makes...

It looks like the API changes are small enough that we could potentially allow either version of Quill with some minor refactoring

> But I'd be ok adding support for it in either react-quill v1 and v2—with the user overriding the dependency manually via webpack. Yep, I was thinking bundling Quill v1...

Another limitation of `for ... of` is that if one test throws an error and fails, the rest of the loop fails to execute. That means you get varying numbers...

I'm not 100% clear on why the test runner needs to know about `mount` at all. For example, in Jest with JSDOM, the test provides a clean DOM environment per...

JSDOM doesn't implement all the DOM events and layout stuff you need to test this library fully. A full browser environment is recommended. The Quill tests are in Selenium and...