mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
a9243077b4
* use substitution * add test
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const { convertToHexValue, withFixtures } = require('../helpers');
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
describe('Terms of use', function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: convertToHexValue(25000000000000000000),
|
|
},
|
|
],
|
|
};
|
|
it('accepts the updated terms of use', async function () {
|
|
const firstOfJan = 1672574400;
|
|
await withFixtures(
|
|
{
|
|
fixtures: new FixtureBuilder()
|
|
.withAppStateController({
|
|
termsOfUseLastAgreed: firstOfJan,
|
|
})
|
|
.build(),
|
|
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);
|
|
|
|
// accept updated terms of use
|
|
const acceptTerms = '[data-testid="terms-of-use-accept-button"]';
|
|
await driver.clickElement('[data-testid="popover-scroll-button"]');
|
|
await driver.clickElement('[data-testid="terms-of-use-checkbox"]');
|
|
await driver.clickElement(acceptTerms);
|
|
|
|
// check modal is no longer shown
|
|
await driver.waitForElementNotPresent(acceptTerms);
|
|
const termsExists = await driver.isElementPresent(acceptTerms);
|
|
assert.equal(termsExists, false, 'terms of use should not be shown');
|
|
},
|
|
);
|
|
});
|
|
});
|