MyCrypto/spec/pages/Swap.spec.tsx

17 lines
536 B
TypeScript
Raw Normal View History

import React from 'react';
import Enzyme from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
import Swap from 'containers/Tabs/Swap';
import shallowWithStore from '../utils/shallowWithStore';
import { createMockStore } from 'redux-test-utils';
2017-12-11 09:44:53 -08:00
import { INITIAL_STATE } from 'reducers/swap';
Enzyme.configure({ adapter: new Adapter() });
it('render snapshot', () => {
2017-12-11 09:44:53 -08:00
const store = createMockStore({ swap: INITIAL_STATE });
const component = shallowWithStore(<Swap />, store);
expect(component).toMatchSnapshot();
});