Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
duckception committed Oct 6, 2023
1 parent 6cfbd00 commit 7172aea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion wallets/metamask/src/actions/connectWalletToDapp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ async function getNotificationPage(context: BrowserContext, extensionId: string,
}

if (retries >= 60) {
throw new Error('[GetNotificationPage] Max amount of retries to get notification page has been reached. It was never found.')
throw new Error(
'[GetNotificationPage] Max amount of retries to get notification page has been reached. It was never found.'
)
}

const isNotificationPage = (page: Page) => page.url().includes(`chrome-extension://${extensionId}/notification.html`)
Expand Down
2 changes: 1 addition & 1 deletion wallets/metamask/test/e2e/metamask.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const test = base.extend({
const browserArgs = [
`--disable-extensions-except=${metamaskPath}`,
`--load-extension=${metamaskPath}`,
`--disable-popup-blocking`,
"--disable-popup-blocking",
'--disable-gpu',
'--use-wayland-explicit-grab',
'--no-sandbox'
Expand Down

0 comments on commit 7172aea

Please sign in to comment.