Skip to content

Instantly share code, notes, and snippets.

@lek890
Created July 8, 2021 13:13
Show Gist options
  • Save lek890/3900bd8ba0a91cc5b57a672a73721fb7 to your computer and use it in GitHub Desktop.
Save lek890/3900bd8ba0a91cc5b57a672a73721fb7 to your computer and use it in GitHub Desktop.
import { render } from "@testing-library/react";
import { UserProfile } from "./User";
it("doesn't show the premium features", () => {
const { getByTestId } = render(
<UserProfile user={{ name: "Sheldon", isPremiumUser: false }} />
);
expect(getByTestId("premiumFeatures")).toBeTruthy(); //throws
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment