1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/pages/lock/lock.test.js
Thomas Huang c162d52ca3
Various test files converting to @testing-library/react. (#15470)
* Convert Menu Bar test to tlr

* Add test ids to sig req footer buttons

* Convert Sig Req to tlr

* Convert First Time Flow Switch to tlr

* Convert Lock test to tlr

* Add test id to account options menu
2022-08-08 13:28:49 -07:00

37 lines
954 B
JavaScript

import React from 'react';
import sinon from 'sinon';
import { renderWithProvider } from '../../../test/lib/render-helpers';
import Lock from './lock.component';
describe('Lock', () => {
it('replaces history with default route when isUnlocked false', () => {
const props = {
isUnlocked: false,
history: {
replace: sinon.spy(),
},
};
renderWithProvider(<Lock {...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();
renderWithProvider(<Lock {...props} />);
expect(await props.lockMetamask.calledOnce).toStrictEqual(true);
expect(props.history.push.getCall(0).args[0]).toStrictEqual('/');
});
});