You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
630 B
25 lines
630 B
4 years ago
|
import React from 'react';
|
||
|
import sinon from 'sinon';
|
||
|
import { mount } from 'enzyme';
|
||
4 years ago
|
import RevealSeedPage from './reveal-seed';
|
||
5 years ago
|
|
||
4 years ago
|
describe('Reveal Seed Page', () => {
|
||
|
it('form submit', () => {
|
||
5 years ago
|
const props = {
|
||
|
history: {
|
||
|
push: sinon.spy(),
|
||
|
},
|
||
|
requestRevealSeedWords: sinon.stub().resolves(),
|
||
4 years ago
|
mostRecentOverviewPage: '/',
|
||
4 years ago
|
};
|
||
4 years ago
|
const wrapper = mount(<RevealSeedPage.WrappedComponent {...props} />, {
|
||
|
context: {
|
||
|
t: (str) => str,
|
||
4 years ago
|
},
|
||
4 years ago
|
});
|
||
5 years ago
|
|
||
4 years ago
|
wrapper.find('form').simulate('submit');
|
||
4 years ago
|
expect(props.requestRevealSeedWords.calledOnce).toStrictEqual(true);
|
||
4 years ago
|
});
|
||
|
});
|