Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Mar 1, 2020
1 parent e20cf0d commit 76d5dbf
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import TableFooter from '../TableFooter';
import TableCell from '../TableCell';
import Typography from '../Typography';
import TableRow from '../TableRow';
import TableBody from '../TableBody';
import TablePagination from './TablePagination';

describe('<TablePagination />', () => {
Expand All @@ -35,11 +34,14 @@ describe('<TablePagination />', () => {
classes = getClasses(
<TablePagination count={1} onChangePage={() => {}} page={0} rowsPerPage={10} />,
);
// StrictModeViolation: test uses #html()
});

beforeEach(() => {
// StrictModeViolation: test uses #html()()
mount = createMount({ strict: false });
});

after(() => {
afterEach(() => {
mount.cleanUp();
});

Expand Down

0 comments on commit 76d5dbf

Please sign in to comment.