X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c90e813adcec89899d9db95843295a84fb058c3e..f05e6a9cece7e3b118134136ee81bd7477ad10a0:/src/views/workbench/workbench.test.tsx diff --git a/src/views/workbench/workbench.test.tsx b/src/views/workbench/workbench.test.tsx index 6925792293..79a98ad60b 100644 --- a/src/views/workbench/workbench.test.tsx +++ b/src/views/workbench/workbench.test.tsx @@ -9,18 +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: [], router: { location: null }, auth: {}, sidePanel: [] }, createBrowserHistory()); + const store = configureStore(createBrowserHistory()); ReactDOM.render( - - - - - , + + + + + + + , div); ReactDOM.unmountComponentAtNode(div); });