Skip to content

Instantly share code, notes, and snippets.

@JWLangford
Created April 29, 2021 10:12
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/9abf9eb1012f300b87fa83b25378d2a2 to your computer and use it in GitHub Desktop.
Save JWLangford/9abf9eb1012f300b87fa83b25378d2a2 to your computer and use it in GitHub Desktop.
it("renders default state", () => {
const { getByTestId } = render(<FormTest />);
const password = getByTestId("account-delete-password") as HTMLInputElement;
const confirm = getByTestId("account-delete-confirm");
const submit = getByTestId("account-delete-submit");
expect(password.value).toBe("");
expect(confirm).not.toHaveClass("Mui-checked");
expect(submit).toHaveClass("Mui-disabled");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment