Skip to content

Instantly share code, notes, and snippets.

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

  • Save annacoding2020/389b4f819d3a9d0897df4556c2126294 to your computer and use it in GitHub Desktop.

Select an option

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