1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-28 05:12:18 +01:00
metamask-extension/ui/app/pages/keychains/tests/reveal-seed.test.js

25 lines
606 B
JavaScript
Raw Normal View History

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(),
}
2020-11-03 00:41:28 +01:00
const wrapper = mount(<RevealSeedPage.WrappedComponent {...props} />, {
context: {
t: (str) => str,
},
2020-11-03 00:41:28 +01:00
})
wrapper.find('form').simulate('submit')
assert(props.requestRevealSeedWords.calledOnce)
})
})