We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
as described in Kent's blog post, it would be nice to have an autofix rule that converts
await waitFor(() => { expect(screen.getByText("foo")).toBeInTheDocument() }
into this:
expect (await screen.findByText("foo")).toBeInTheDocument()