Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tfiechowski/575dd53dee263e4ceb1a68fd9ccce773 to your computer and use it in GitHub Desktop.
Save tfiechowski/575dd53dee263e4ceb1a68fd9ccce773 to your computer and use it in GitHub Desktop.
import { render, getByText } from "@testing-library/react";
import React from "react";
import Button from "components/Button";
describe("Button", () => {
test("should display text", () => {
const { container } = render(<Button text="We Salute You!" />);
getByText(container, "We Salute You!");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment