Skip to content

Instantly share code, notes, and snippets.

@JWLangford
Created April 29, 2021 10:15
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 JWLangford/8df5458ee8ef78b4541a77dcb0177fa3 to your computer and use it in GitHub Desktop.
Save JWLangford/8df5458ee8ef78b4541a77dcb0177fa3 to your computer and use it in GitHub Desktop.
it("keeps submit disabled when only confirm is checked", () => {
const { getByTestId } = render(<FormTest />);
const confirm = getByTestId("account-delete-confirm");
const submit = getByTestId("account-delete-submit");
fireEvent.click(confirm);
expect(submit).toHaveClass("Mui-disabled");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment