1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/keychains/tests/reveal-seed.test.js
Erik Marks 76a2a9bb8b
@metamask/eslint config@5.0.0 (#10358)
* @metamask/eslint-config@5.0.0
* Update eslintrc and prettierrc
* yarn lint:fix
2021-02-04 10:15:23 -08:00

25 lines
617 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);
});
});