Skip to content

Commit

Permalink
Try chrome-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
duckception committed Oct 6, 2023
1 parent 61b5c64 commit c36bb83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

# For now, we only need Chromium.
- name: Install browsers for Playwright
run: pnpm dlx playwright install chromium
run: pnpm dlx playwright install chrome-beta

- name: Build project
run: pnpm run build
Expand Down
6 changes: 3 additions & 3 deletions wallets/metamask/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ export default defineConfig({

// Concise 'dot' for CI, default 'html' when running locally.
// See https://playwright.dev/docs/test-reporters.
reporter: process.env.CI ? 'dot' : 'html',
reporter: process.env.CI ? 'list' : 'html',

// Shared settings for all the projects below.
// See https://playwright.dev/docs/api/class-testoptions.
use: {
// Collect all traces on CI, and only traces for failed tests when running locally.
// See https://playwright.dev/docs/trace-viewer.
trace: process.env.CI ? 'on' : 'retain-on-failure'
trace: 'on'
},

// Configure projects for major browsers.
projects: [
{
name: 'chromium',
name: 'chrome',
use: { ...devices['Desktop Chrome'] }
}
]
Expand Down

0 comments on commit c36bb83

Please sign in to comment.