mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
922985f9ea
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
23 lines
596 B
TypeScript
23 lines
596 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();
|
|
});
|
|
});
|