jest.useFakeTimers(); import React from 'react'; import { shallow } from 'enzyme'; import ChoosePassword from './'; import configureMockStore from 'redux-mock-store'; import { ONBOARDING, PROTECT } from '../../../constants/navigation'; import { Provider } from 'react-redux'; const mockStore = configureMockStore(); const initialState = { user: { passwordSet: true, seedphraseBackedUp: false, }, engine: { backgroundState: { PreferencesController: { selectedAddress: '0xe7E125654064EEa56229f273dA586F10DF96B0a1', }, }, }, }; const store = mockStore(initialState); describe('ChoosePassword', () => { it('should render correctly', () => { const wrapper = shallow( , ); expect(wrapper.dive()).toMatchSnapshot(); }); });