Skip to content

Instantly share code, notes, and snippets.

@Clarity-89
Created September 15, 2022 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Clarity-89/c421d82cc4098146d524a774ba264527 to your computer and use it in GitHub Desktop.
Save Clarity-89/c421d82cc4098146d524a774ba264527 to your computer and use it in GitHub Desktop.
import { waitFor } from "@testing-library/react";
//...
describe("ListPage", () => {
it("renders without breaking", async () => {
render(<ListPage />);
await waitFor(() => {
expect(
screen.getByRole("heading", { name: "List of items" })
).toBeInTheDocument();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment