Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
seaona committed Jun 27, 2024
1 parent 3b448e8 commit 604ace6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/e2e/tests/onboarding/onboarding.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ describe('MetaMask onboarding @no-mmi', function () {
},
async ({ driver, mockedEndpoint: mockedEndpoints }) => {
const password = 'password';

await driver.navigate();

await onboardingBeginCreateNewWallet(driver);
Expand Down Expand Up @@ -456,8 +457,8 @@ describe('MetaMask onboarding @no-mmi', function () {
}

await driver.clickElement('[data-testid="pin-extension-done"]');

// requests happen here!

for (let i = 0; i < mockedEndpoints.length; i += 1) {
const mockedEndpoint = await mockedEndpoints[i];

Expand All @@ -469,9 +470,9 @@ describe('MetaMask onboarding @no-mmi', function () {
const requests = await mockedEndpoint.getSeenRequests();

assert.equal(
requests.length > 0,
true,
`${mockedEndpoints[i]} should make requests after onboarding`,
requests.length > 0,
true,
`${mockedEndpoints[i]} should make requests after onboarding`,
);
}
},
Expand Down

0 comments on commit 604ace6

Please sign in to comment.