1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/unlock-page/unlock-page.component.test.js

30 lines
904 B
JavaScript

import React from 'react';
import sinon from 'sinon';
import configureMockStore from 'redux-mock-store';
import { fireEvent } from '@testing-library/react';
import { renderWithProvider } from '../../../test/lib/render-helpers';
import UnlockPage from './unlock-page.component';
describe('Unlock Page Component', () => {
it('clicks imports seed button', () => {
const props = {
history: {
push: sinon.spy(),
},
isUnlocked: false,
onRestore: sinon.spy(),
onSubmit: sinon.spy(),
forceUpdateMetamaskState: sinon.spy(),
showOptInModal: sinon.spy(),
};
const { getByText } = renderWithProvider(
<UnlockPage {...props} />,
configureMockStore()({ metamask: { currentLocale: 'en' } }),
);
fireEvent.click(getByText('import using Secret Recovery Phrase'));
expect(props.onRestore.calledOnce).toStrictEqual(true);
});
});