mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
parent
2589d8d5d3
commit
a9243077b4
@ -140,7 +140,8 @@ function defaultFixture() {
|
|||||||
browserEnvironment: {},
|
browserEnvironment: {},
|
||||||
nftsDropdownState: {},
|
nftsDropdownState: {},
|
||||||
connectedStatusPopoverHasBeenShown: true,
|
connectedStatusPopoverHasBeenShown: true,
|
||||||
termsOfUseLastAgreed: 86400000000000,
|
termsOfUseLastAgreed:
|
||||||
|
'__FIXTURE_SUBSTITUTION__currentDateInMilliseconds',
|
||||||
defaultHomeActiveTabName: null,
|
defaultHomeActiveTabName: null,
|
||||||
fullScreenGasPollTokens: [],
|
fullScreenGasPollTokens: [],
|
||||||
notificationGasPollTokens: [],
|
notificationGasPollTokens: [],
|
||||||
|
45
test/e2e/tests/terms-of-use.spec.js
Normal file
45
test/e2e/tests/terms-of-use.spec.js
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
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');
|
||||||
|
},
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user