mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
25 lines
630 B
JavaScript
25 lines
630 B
JavaScript
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { mount } from 'enzyme';
|
|
import RevealSeedPage from './reveal-seed';
|
|
|
|
describe('Reveal Seed Page', () => {
|
|
it('form submit', () => {
|
|
const props = {
|
|
history: {
|
|
push: sinon.spy(),
|
|
},
|
|
requestRevealSeedWords: sinon.stub().resolves(),
|
|
mostRecentOverviewPage: '/',
|
|
};
|
|
const wrapper = mount(<RevealSeedPage.WrappedComponent {...props} />, {
|
|
context: {
|
|
t: (str) => str,
|
|
},
|
|
});
|
|
|
|
wrapper.find('form').simulate('submit');
|
|
expect(props.requestRevealSeedWords.calledOnce).toStrictEqual(true);
|
|
});
|
|
});
|