mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 22:26:53 +03:00
57ec0534b2
* Replace enzyme with React testing library in ui * Mock Math.random()
23 lines
595 B
TypeScript
23 lines
595 B
TypeScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
import { Toolbar, Divider, Spacer, Button } from '../src';
|
|
|
|
describe('Toolbar', function () {
|
|
it('renders correctly', () => {
|
|
const { container } = render(
|
|
<Toolbar>
|
|
<Button>1</Button>
|
|
<Divider />
|
|
<Spacer />
|
|
<Button>2</Button>
|
|
</Toolbar>
|
|
);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('renders with props', () => {
|
|
const { container } = render(<Toolbar borderPosition="top" />);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
});
|