Skip to content

Commit

Permalink
test(connect-popup): fix log going to
Browse files Browse the repository at this point in the history
  • Loading branch information
karliatto committed Oct 14, 2024
1 parent f53d31e commit 9dee606
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/connect-popup/e2e/tests/transport.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ fixtures.forEach(f => {

const afterCleanup = await f.setup?.(context);

log(`going to: ${url}${f.queryString}#/method/verifyMessage`);
await page.goto(formatUrl(url, `methods/bitcoin/verifyMessage/${f.queryString}`));
const formattedUrl = formatUrl(url, `methods/bitcoin/verifyMessage/${f.queryString}`);
log(`going to: ${formattedUrl}`);
await page.goto(formattedUrl);
log('waiting for explorer to load');
await waitAndClick(page, ['@api-playground/collapsible-box']);
await page.waitForSelector("button[data-testid='@submit-button']", {
Expand Down

0 comments on commit 9dee606

Please sign in to comment.