mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 21:00:13 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
import assert from 'assert';
|
|
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import { mountWithRouter } from '../../../../../../test/lib/render-helpers';
|
|
import SelectAction from '..';
|
|
|
|
describe('Selection Action', function () {
|
|
let wrapper;
|
|
|
|
const props = {
|
|
isInitialized: false,
|
|
setFirstTimeFlowType: sinon.spy(),
|
|
history: {
|
|
push: sinon.spy(),
|
|
},
|
|
};
|
|
|
|
beforeEach(function () {
|
|
wrapper = mountWithRouter(<SelectAction.WrappedComponent {...props} />);
|
|
});
|
|
|
|
afterEach(function () {
|
|
props.setFirstTimeFlowType.resetHistory();
|
|
props.history.push.resetHistory();
|
|
});
|
|
|
|
it('clicks import wallet to route to import FTF', function () {
|
|
const importWalletButton = wrapper
|
|
.find('.btn-primary.first-time-flow__button')
|
|
.at(0);
|
|
importWalletButton.simulate('click');
|
|
|
|
assert(props.setFirstTimeFlowType.calledOnce);
|
|
assert.strictEqual(props.setFirstTimeFlowType.getCall(0).args[0], 'import');
|
|
assert(props.history.push.calledOnce);
|
|
});
|
|
|
|
it('clicks create wallet to route to create FTF ', function () {
|
|
const createWalletButton = wrapper
|
|
.find('.btn-primary.first-time-flow__button')
|
|
.at(1);
|
|
createWalletButton.simulate('click');
|
|
|
|
assert(props.setFirstTimeFlowType.calledOnce);
|
|
assert.strictEqual(props.setFirstTimeFlowType.getCall(0).args[0], 'create');
|
|
assert(props.history.push.calledOnce);
|
|
});
|
|
});
|