Skip to content

Commit

Permalink
test(connect-popup): fix misleading url in log
Browse files Browse the repository at this point in the history
  • Loading branch information
mroz22 committed Sep 27, 2024
1 parent 91123a2 commit 3a930fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/connect-popup/e2e/tests/popup-pages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,14 @@ test('log page should contain logs from shared worker', async ({ page, context }
});
}

log(`go to: ${url}#/method/verifyMessage`);
await explorerPage.goto(formatUrl(explorerUrl, `methods/bitcoin/verifyMessage/`));
const verifyMessageUrl = formatUrl(explorerUrl, `methods/bitcoin/verifyMessage/`);
await explorerPage.goto(verifyMessageUrl);

log('opening popup');
[popup] = await openPopup(persistentContext, explorerPage, isWebExtension);

await popup.waitForLoadState('load');
log(`loaded: ${url}#/method/verifyMessage`);
log(`loaded: ${verifyMessageUrl}`);
// Open new tab to go to log.html
const logsPage = await persistentContext.newPage();

Expand Down

0 comments on commit 3a930fd

Please sign in to comment.