Skip to content

Instantly share code, notes, and snippets.

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

  • Save annacoding2020/3cc661966ad5fc64b76b1d766eb70656 to your computer and use it in GitHub Desktop.

Select an option

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