import React from 'react'; import configureMockStore from 'redux-mock-store'; import { shallow } from 'enzyme'; import AddAsset from './'; import { Provider } from 'react-redux'; const mockStore = configureMockStore(); const initialState = { engine: { backgroundState: { NetworkController: { provider: { chainId: '1', }, }, PreferencesController: { useCollectibleDetection: true, }, }, }, }; const store = mockStore(initialState); describe('AddAsset', () => { it('should render correctly', () => { const wrapper = shallow( , ); expect(wrapper.dive()).toMatchSnapshot(); }); });