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.
47 lines
1.6 KiB
47 lines
1.6 KiB
3 years ago
|
const { strict: assert } = require('assert');
|
||
|
const { convertToHexValue, withFixtures } = require('../helpers');
|
||
|
|
||
|
describe('Auto-Lock Timer', function () {
|
||
|
const ganacheOptions = {
|
||
|
accounts: [
|
||
|
{
|
||
|
secretKey:
|
||
|
'0x53CB0AB5226EEBF4D872113D98332C1555DC304443BEE1CF759D15798D3C55A9',
|
||
|
balance: convertToHexValue(25000000000000000000),
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
it('should automatically lock the wallet once the idle time has elapsed', async function () {
|
||
|
await withFixtures(
|
||
|
{
|
||
|
fixtures: 'imported-account',
|
||
|
ganacheOptions,
|
||
|
title: this.test.title,
|
||
|
},
|
||
|
async ({ driver }) => {
|
||
|
await driver.navigate();
|
||
|
await driver.fill('#password', 'correct horse battery staple');
|
||
|
await driver.press('#password', driver.Key.ENTER);
|
||
|
// Set Auto Lock Timer
|
||
|
await driver.clickElement('.account-menu__icon');
|
||
|
await driver.clickElement({ text: 'Settings', tag: 'div' });
|
||
|
await driver.clickElement({ text: 'Advanced', tag: 'div' });
|
||
|
const sixSecsInMins = '.1';
|
||
|
await driver.fill(
|
||
|
'[data-testid="advanced-setting-auto-lock"] input',
|
||
|
sixSecsInMins,
|
||
|
);
|
||
|
await driver.clickElement(
|
||
|
'[data-testid="advanced-setting-auto-lock"] button',
|
||
|
);
|
||
|
// Verify the wallet is loccked
|
||
|
const pageTitle = await driver.findElement('.unlock-page__title');
|
||
|
const unlockButton = await driver.findElement('.unlock-page button');
|
||
|
assert.equal(await pageTitle.getText(), 'Welcome Back!');
|
||
|
assert.equal(await unlockButton.isDisplayed(), true);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
});
|