Skip to content

Instantly share code, notes, and snippets.

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