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.
Tag:
Branch:
Tree:
d23db62ba0
develop
feature/default_network_editable
v10.22.3
${ noResults }
25 lines
630 B
25 lines
630 B
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);
|
|||
});
|
|||
});
|