From f7d0de7b154d608efb5447719fdc7a06278f0547 Mon Sep 17 00:00:00 2001 From: Gabriel Liwerant Date: Wed, 16 Oct 2019 18:05:02 -0400 Subject: [PATCH] Prettify files --- test/MUIDataTable.test.js | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/test/MUIDataTable.test.js b/test/MUIDataTable.test.js index e7b7bb5c7..86a55ad03 100644 --- a/test/MUIDataTable.test.js +++ b/test/MUIDataTable.test.js @@ -779,12 +779,21 @@ describe('', function() { it('should properly set searchText when hiding the search bar', () => { const options = { rowsPerPage: 1, - textLabels + textLabels, }; const shallowWrapper = shallow(); const table = shallowWrapper.dive(); const instance = table.instance(); - const shallowWrapperTableToolbar = shallow(); + const shallowWrapperTableToolbar = shallow( + , + ); const instanceTableToolbar = shallowWrapperTableToolbar.dive().instance(); instance.searchTextUpdate('Joe'); @@ -800,12 +809,21 @@ describe('', function() { it('should not change page when hiding the search bar', () => { const options = { rowsPerPage: 1, - textLabels + textLabels, }; const shallowWrapper = shallow(); const table = shallowWrapper.dive(); const instance = table.instance(); - const shallowWrapperTableToolbar = shallow(); + const shallowWrapperTableToolbar = shallow( + , + ); const instanceTableToolbar = shallowWrapperTableToolbar.dive().instance(); // Simulate a search that has multiple pages of results