Ernesto García

Results 235 comments of Ernesto García

We now have `.toBePartiallyChecked` as of v5.8.0 just released. See testing-library/jest-dom#249. So this issue can be now about making the eslint plugin aware of this for as a replacement for...

Thanks for taking the time to draft that proposal. It certainly looks interesting. Regardless of how open we maintainers may be with this proposal, I am 99.99% sure it is...

> I don't think that this would be a breaking change If what you mean is that we can still provide the exports of the current queries, then yes. But...

I knew I felt a deja-vu when reading this proposal. Thanks @alexkrolick!

I wonder what's the definition for "not visible" in this context. For instance, given the first test example above: ```js test("off-screen element not queryable", () => { const { queryByText...

Maybe I was not clear enough, because of the different uses we can give to the adjective "visible". Yes, I said "become visible" and in that case I said it...

Shouldn't this issue be moved to @testing-library/dom?

The thing is that this ```js useEffect(function onUpdate () { console.log("onUpdate"); }, [props.myProp]); ``` Runs not only on update of `props.myProp`, but also on mount.

Hi, fellow sufferer from the same bug 😅 I found this while looking information about this exact same issue. I found an answer in another issue that could be relevant:...

At a glance I think that does not have to do with my changes. The error you mention above is due to `ThemeProvider` not supporting more than one child element....