Skip to content

Commit

Permalink
chore: debug2
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahschwartz committed Oct 11, 2024
1 parent 1572260 commit 5e8b6c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# - "tests/daily-spend-limit.spec.ts"
# - "tests/signing-txns-with-webauthn.spec.ts"
# - "tests/native-aa-multisig.spec.ts"
- "tests/frontend-paymaster.spec.ts"
- "frontend-paymaster"

steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
export TERM=xterm-256color
export COLUMNS=80
export LINES=24
xvfb-run bun test:headful ${{ matrix.tutorial }}
xvfb-run bun test:headful tests/${{ matrix.tutorial }}.spec.ts
- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down
4 changes: 4 additions & 0 deletions tests/utils/metamask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ async function connectMultipleAccounts(notificationPage: Page, accounts: string[
// Additionally disable default account to reuse necessary delay
// console.log('DISABLING DEFAULT ACCOUNT');
// await notificationPage.locator(selectors.accountOption).locator(selectors.accountCheckbox).last().setChecked(false);
const elements1 = await notificationPage.locator('.choose-account-list').all();
console.log('ELEMENTS1', elements1);
const elements2 = await notificationPage.locator('input').all();
console.log('INPUTS', elements2);
console.log('GETTING ACCOUNT LOCATORS');
const accountLocators = await notificationPage.locator(selectors.accountOption).all();
console.log('accountLocators', accountLocators);
Expand Down

0 comments on commit 5e8b6c1

Please sign in to comment.