Skip to content

Instantly share code, notes, and snippets.

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