Skip to content

Commit

Permalink
Try without deps
Browse files Browse the repository at this point in the history
  • Loading branch information
harryy94 committed Feb 3, 2025
1 parent b51c4b5 commit ae2601b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/validate-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
name: Run Playwright Tests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -29,7 +30,7 @@ jobs:

- name: Install Playwright Browsers
working-directory: ./src/e2e/CareLeavers.E2ETests
run: yarn playwright install --with-deps chromium
run: yarn playwright install

- name: Run Playwright Tests
working-directory: ./src/e2e/CareLeavers.E2ETests
Expand Down
44 changes: 22 additions & 22 deletions src/e2e/CareLeavers.E2ETests/playwright-ci.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,27 @@ export default defineConfig({
name: 'Chromium',
use: { browserName: 'chromium' },
},
// {
// name: 'Firefox',
// use: { browserName: 'firefox' },
// },
// {
// name: 'WebKit',
// use: { browserName: 'webkit' },
// },
// {
// name: 'Mobile Chrome',
// use: {
// browserName: 'chromium',
// ...devices['Pixel 8'],
// },
// },
// {
// name: 'Mobile Safari',
// use: {
// browserName: 'webkit',
// ...devices['iPhone 15'],
// },
// },
{
name: 'Firefox',
use: { browserName: 'firefox' },
},
{
name: 'WebKit',
use: { browserName: 'webkit' },
},
{
name: 'Mobile Chrome',
use: {
browserName: 'chromium',
...devices['Pixel 8'],
},
},
{
name: 'Mobile Safari',
use: {
browserName: 'webkit',
...devices['iPhone 15'],
},
},
],
});

0 comments on commit ae2601b

Please sign in to comment.