44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import Enzyme from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
import SendTransaction from 'containers/Tabs/SendTransaction';
|
|
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 = config(undefined as any, {} as any);
|
|
const testState = {
|
|
wallet: {},
|
|
balance: {},
|
|
tokenBalances: {},
|
|
node: {},
|
|
nodeLib: {},
|
|
network: {},
|
|
tokens: [],
|
|
gasPrice: {},
|
|
transactions: {},
|
|
offline: {},
|
|
config: testStateConfig,
|
|
customTokens: []
|
|
};
|
|
const routeProps: RouteComponentProps<any> = createMockRouteComponentProps({
|
|
match: { path: '/account', url: '/account', isExact: true, params: {} },
|
|
location: { pathname: '/account', search: '', hash: '', key: 'e08jz7' },
|
|
history: {
|
|
length: 2,
|
|
action: 'PUSH',
|
|
location: { pathname: '/account', search: '', hash: '', key: 'e08jz7', state: {} }
|
|
}
|
|
});
|
|
|
|
const store = createMockStore(testState);
|
|
const component = shallowWithStore(<SendTransaction {...routeProps} />, store);
|
|
|
|
expect(component).toMatchSnapshot();
|
|
});
|