mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 22:26:53 +03:00
e9da5fc411
* fix(deps): update react * Fix * Use createRoot * Update tests * Format * Fix test Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
20 lines
599 B
TypeScript
20 lines
599 B
TypeScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { Button } from '../src';
|
|
|
|
describe('Button', function () {
|
|
it('renders correctly', () => {
|
|
const { container } = render(<Button>Text</Button>);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('should handle the click event', async () => {
|
|
const onClick = jest.fn();
|
|
render(<Button onClick={onClick}>ClickMe</Button>);
|
|
|
|
await userEvent.click(screen.getByRole('button'));
|
|
expect(onClick).toHaveBeenCalled();
|
|
});
|
|
});
|