1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/pages/keychains/tests/reveal-seed.test.js
Whymarrh Whitby c1e3c229bc
Fix import/order issues (#9239)
See [`import/order`](https://eslint.org/docs/rules/import/order) for more information.

This change enables `import/order` and fixes the issues raised by the rule.
2020-08-18 16:48:25 -02:30

27 lines
627 B
JavaScript

import assert from 'assert'
import React from 'react'
import sinon from 'sinon'
import { mount } from 'enzyme'
import RevealSeedPage from '../reveal-seed'
describe('Reveal Seed Page', function () {
it('form submit', function () {
const props = {
history: {
push: sinon.spy(),
},
requestRevealSeedWords: sinon.stub().resolves(),
}
const wrapper = mount(
<RevealSeedPage.WrappedComponent {...props} />, {
context: {
t: (str) => str,
},
},
)
wrapper.find('form').simulate('submit')
assert(props.requestRevealSeedWords.calledOnce)
})
})