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
2020-02-15 17:04:21 -03:30

27 lines
626 B
JavaScript

import React from 'react'
import assert from 'assert'
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)
})
})