import renderer from 'react-test-renderer';
import Table from './Table';
test('renders correctly', () => {
const tree = renderer
.create(
,
)
.toJSON();
expect(tree).toMatchSnapshot();
});
test('renders correctly with border', () => {
const tree = renderer
.create(
,
)
.toJSON();
expect(tree).toMatchSnapshot();
});
test('renders correctly with maxHeight', () => {
const tree = renderer
.create(
,
)
.toJSON();
expect(tree).toMatchSnapshot();
});
test('renders correctly with stickyColumns', () => {
const tree = renderer
.create(
,
)
.toJSON();
expect(tree).toMatchSnapshot();
});