X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/52cc3b912c703c24bc90e67aaf24e8ad912d3ebf..18a8117437056f65e3c9d84b0231c5f64b1346d1:/src/views/workbench/workbench.test.tsx diff --git a/src/views/workbench/workbench.test.tsx b/src/views/workbench/workbench.test.tsx index 6edebaf088..79a98ad60b 100644 --- a/src/views/workbench/workbench.test.tsx +++ b/src/views/workbench/workbench.test.tsx @@ -9,27 +9,22 @@ import { Provider } from "react-redux"; import configureStore from "../../store/store"; import createBrowserHistory from "history/createBrowserHistory"; import { ConnectedRouter } from "react-router-redux"; +import { MuiThemeProvider } from '@material-ui/core/styles'; +import { CustomTheme } from '../../common/custom-theme'; const history = createBrowserHistory(); it('renders without crashing', () => { const div = document.createElement('div'); - const store = configureStore({ - projects: { - items: [], - currentItemId: "" - }, - collections: [], - router: { location: null }, - auth: {}, - sidePanel: [] - }, createBrowserHistory()); + const store = configureStore(createBrowserHistory()); ReactDOM.render( - - - - - , + + + + + + + , div); ReactDOM.unmountComponentAtNode(div); });