45 lines
1.1 KiB
TypeScript
45 lines
1.1 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';
|
||
|
|
||
|
Enzyme.configure({ adapter: new Adapter() });
|
||
|
|
||
|
it('render snapshot', () => {
|
||
|
const testStateConfig = {
|
||
|
languageSelection: 'en',
|
||
|
nodeSelection: 'rop_mew',
|
||
|
gasPriceGwei: 21,
|
||
|
offline: false,
|
||
|
forceOffline: false
|
||
|
};
|
||
|
const testState = {
|
||
|
wallet: {},
|
||
|
balance: {},
|
||
|
tokenBalances: {},
|
||
|
node: {},
|
||
|
nodeLib: {},
|
||
|
network: {},
|
||
|
tokens: [],
|
||
|
gasPrice: {},
|
||
|
transactions: {},
|
||
|
offline: {},
|
||
|
forceOffline: {},
|
||
|
config: testStateConfig,
|
||
|
customTokens: []
|
||
|
};
|
||
|
const location = {
|
||
|
search:
|
||
|
'?to=73640ebefe93e4d0d6e9030ee9c1866ad1f3b9f1feeb403e978c4952d8369b39'
|
||
|
};
|
||
|
const store = createMockStore(testState);
|
||
|
const component = shallowWithStore(
|
||
|
<SendTransaction location={location} />,
|
||
|
store
|
||
|
);
|
||
|
|
||
|
expect(component).toMatchSnapshot();
|
||
|
});
|