mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
27 lines
626 B
JavaScript
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)
|
|
})
|
|
})
|