Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tfiechowski/b73050b1783c088b6c9e57533e4a7187 to your computer and use it in GitHub Desktop.
Save tfiechowski/b73050b1783c088b6c9e57533e4a7187 to your computer and use it in GitHub Desktop.
describe("Button", () => {
test("should handle click events", () => {
const onClickMock = jest.fn();
const { container } = render(
<Button text="Click me, maybe?" onClick={onClickMock} />
);
const component = container.firstChild;
fireEvent.click(component);
expect(onClickMock).toBeCalled();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment