as described in Kent's blog post, it would be nice to have an autofix rule that converts ```js await waitFor(() => { expect(screen.getByText("foo")).toBeInTheDocument() } ``` into this: ```js expect (await screen.findByText("foo")).toBeInTheDocument() ```