Get rest of tests passing

This commit is contained in:
HenryNguyen5 2018-02-07 23:04:51 -05:00
parent 39c0a9d7e6
commit 6b861a43fc
2 changed files with 3 additions and 1 deletions

View File

@ -6,11 +6,12 @@ import shallowWithStore from '../utils/shallowWithStore';
import { createMockStore } from 'redux-test-utils';
import { RouteComponentProps } from 'react-router';
import { createMockRouteComponentProps } from '../utils/mockRouteComponentProps';
import { config } from 'reducers/config';
Enzyme.configure({ adapter: new Adapter() });
it('render snapshot', () => {
const testStateConfig = {};
const testStateConfig = config(undefined, {});
const testState = {
wallet: {},
balance: {},

View File

@ -41,5 +41,6 @@ exports[`render snapshot 1`] = `
"url": "/account",
}
}
requestDisabled={false}
/>
`;