Skip to content

Commit

Permalink
chore(playwright): reduce the amount of browsers to test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matej Tarca authored and matejtarca committed Oct 15, 2023
1 parent 3ec848a commit a03b92b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
if: always()
with:
name: playwright-report
path: playwright-report/
path: e2e/test-reports
retention-days: 30
24 changes: 12 additions & 12 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,25 @@ export default defineConfig({
use: { ...devices["Desktop Chrome"] },
},

{
name: "firefox",
use: { ...devices["Desktop Firefox"] },
},
// {
// name: "firefox",
// use: { ...devices["Desktop Firefox"] },
// },

{
name: "webkit",
use: { ...devices["Desktop Safari"] },
},
// {
// name: "webkit",
// use: { ...devices["Desktop Safari"] },
// },

/* Test against mobile viewports. */
{
name: "Mobile Chrome",
use: { ...devices["Pixel 5"] },
},
{
name: "Mobile Safari",
use: { ...devices["iPhone 12"] },
},
// {
// name: "Mobile Safari",
// use: { ...devices["iPhone 12"] },
// },
],

/* Run your local dev server before starting the tests */
Expand Down

0 comments on commit a03b92b

Please sign in to comment.