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/4a5407b20293ffc0d5c887e090d0eeb8 to your computer and use it in GitHub Desktop.
Save JWLangford/4a5407b20293ffc0d5c887e090d0eeb8 to your computer and use it in GitHub Desktop.
it("keeps submit disabled when only password provided", () => {
const { getByTestId } = render(<FormTest />);
const password = getByTestId("account-delete-password");
const submit = getByTestId("account-delete-submit");
fireEvent.change(password, { target: { value: "password" } });
expect(submit).toHaveClass("Mui-disabled");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment