Skip to content

Instantly share code, notes, and snippets.

@annacoding2020
Created October 11, 2020 21:43
Show Gist options
  • Select an option

  • Save annacoding2020/22f1eb5684b05aba62421dfd129a398a to your computer and use it in GitHub Desktop.

Select an option

Save annacoding2020/22f1eb5684b05aba62421dfd129a398a to your computer and use it in GitHub Desktop.
import { render } from "@testing-library/react";
test("username doesn't exist", () => {
const { queryByTestId } = render(
<Avatar
username="Timonweb"
src="https://example.com/avatar.jpg"
usernameIsHidden
/>
);
expect(queryByTestId(/username/i)).toBeNull();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment