Skip to content

Commit cb60310

Browse files
Fix linting
1 parent c75b034 commit cb60310

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

test/e2e/helpers.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,7 @@ const completeImportSRPOnboardingFlowWordByWord = async (
289289
await driver.fill('#password', password);
290290
await driver.fill('#confirm-password', password);
291291

292-
await driver.clickElement(
293-
'[data-testid="create-new-vault__terms-checkbox"]',
294-
);
292+
await driver.clickElement('[data-testid="create-new-vault__terms-checkbox"]');
295293

296294
await driver.clickElement({ text: 'Import', tag: 'button' });
297295

@@ -313,5 +311,5 @@ module.exports = {
313311
withFixtures,
314312
connectDappWithExtensionPopup,
315313
completeImportSRPOnboardingFlow,
316-
completeImportSRPOnboardingFlowWordByWord
314+
completeImportSRPOnboardingFlowWordByWord,
317315
};

test/e2e/tests/from-import-ui.spec.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const {
66
regularDelayMs,
77
largeDelayMs,
88
completeImportSRPOnboardingFlow,
9-
completeImportSRPOnboardingFlowWordByWord
9+
completeImportSRPOnboardingFlowWordByWord,
1010
} = require('../helpers');
1111

1212
describe('Metamask Import UI', function () {
@@ -166,8 +166,6 @@ describe('Metamask Import UI', function () {
166166
'[data-testid="account-options-menu__account-details"]',
167167
);
168168
await driver.findVisibleElement('.qr-code__wrapper');
169-
// shows a QR code for the account
170-
const detailsModal = await driver.findVisibleElement('span .modal');
171169
// shows the correct account address
172170
const address = await driver.findElement('.qr-code__address');
173171

0 commit comments

Comments
 (0)