You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tag:
Branch:
Tree:
119693fe05
develop
feature/default_network_editable
v10.22.3
${ noResults }
37 lines
979 B
37 lines
979 B
import React from 'react';
|
|||
import sinon from 'sinon';
|
|||
|
import { mountWithRouter } from '../../../test/lib/render-helpers';
|
||
import Lock from './lock.container';
|
|||
|
|||
describe('Lock', () => {
|
|||
it('replaces history with default route when isUnlocked false', () => {
|
|||
const props = {
|
|||
isUnlocked: false,
|
|||
history: {
|
|||
replace: sinon.spy(),
|
|||
},
|
|||
};
|
|||
|
|||
mountWithRouter(<Lock.WrappedComponent {...props} />);
|
|||
|
|||
expect(props.history.replace.getCall(0).args[0]).toStrictEqual('/');
|
|||
});
|
|||
|
|||
it('locks and pushes history with default route when isUnlocked true', async () => {
|
|||
const props = {
|
|||
isUnlocked: true,
|
|||
lockMetamask: sinon.stub(),
|
|||
history: {
|
|||
push: sinon.spy(),
|
|||
},
|
|||
};
|
|||
|
|||
props.lockMetamask.resolves();
|
|||
|
|||
mountWithRouter(<Lock.WrappedComponent {...props} />);
|
|||
|
|||
expect(await props.lockMetamask.calledOnce).toStrictEqual(true);
|
|||
expect(props.history.push.getCall(0).args[0]).toStrictEqual('/');
|
|||
});
|
|||
});
|