Skip to content

Commit

Permalink
just use firefox for ci tests
Browse files Browse the repository at this point in the history
- i hate you playwright
  • Loading branch information
spearwolf committed Jun 16, 2024
1 parent 646052a commit d4fe8fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
NPM_TOKEN: xxx

- name: Install playwright browsers
run: pnpm exec playwright install chrome firefox
run: pnpm exec playwright install firefox

- name: Run all checks
run: xvfb-run pnpm run ci
Expand Down
14 changes: 7 additions & 7 deletions packages/twopoint5d-elements-e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ export default defineConfig({
name: 'firefox',
use: {...devices['Desktop Firefox'], headless: true},
},
{
name: 'chrome',
use: {
...devices['Desktop Chrome'],
headless: true,
},
},

...(process.env.CI ? [] : [
{
name: 'chrome',
use: {
...devices['Desktop Chrome'],
headless: true,
},
},
{
name: 'webkit',
use: {...devices['Desktop Safari'], headless: true},
Expand Down

0 comments on commit d4fe8fe

Please sign in to comment.