mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
57ec0534b2
* Replace enzyme with React testing library in ui * Mock Math.random()
34 lines
902 B
TypeScript
34 lines
902 B
TypeScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { Notification } from '../src';
|
|
|
|
describe('Notification', function () {
|
|
it('renders correctly', () => {
|
|
const { container } = render(<Notification>Message</Notification>);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders with props', () => {
|
|
const { container } = render(
|
|
<Notification
|
|
type="error"
|
|
onClose={() => {
|
|
// noop
|
|
}}
|
|
>
|
|
Message
|
|
</Notification>
|
|
);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('should handle the click event', () => {
|
|
const onClose = jest.fn();
|
|
render(<Notification onClose={onClose}>Message</Notification>);
|
|
|
|
userEvent.click(screen.getByRole('button'));
|
|
expect(onClose).toHaveBeenCalled();
|
|
});
|
|
});
|