mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
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();
|
|
});
|
|
});
|