1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/test/e2e/tests/terms-of-use.spec.js
Peter a9243077b4
Terms of use e2e (#18861)
* use substitution

* add test
2023-04-28 14:37:06 +01:00

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');
},
);
});
});