summaryrefslogtreecommitdiffstats
path: root/test/generic-components/paginatedTable/PaginatedTable.test.js
blob: d3a32b573e007e6ca6516f732baefa65351269fb (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import PaginatedTable from 'generic-components/paginatedTable/PaginatedTable.jsx';
import {shallow} from 'enzyme';

describe('PaginatedTable component', () => {
  it('should be rendered', () => {
    const component = shallow(<PaginatedTable tableHeaders={{}}/>);

    expect(component).toHaveLength(1);
  });
});