Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tfiechowski/eee44dbd5c88439b9505f07149b66616 to your computer and use it in GitHub Desktop.
Save tfiechowski/eee44dbd5c88439b9505f07149b66616 to your computer and use it in GitHub Desktop.
test("should make text uppercase", () => {
const { container } = render(<Button text="We Salute You!" />);
const component = getByText(container, "We Salute You!");
expect(component).toHaveStyleRule("text-transform", "uppercase");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment