File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -721,7 +721,7 @@ jobs:
721721 run : pnpm run test.e2e.${{ matrix.settings.browser }} --timeout 60000 --retries 7 --workers 1
722722
723723 - name : Playwright E2E Integration Tests
724- run : pnpm run test.e2e.integrations --timeout 60000 --retries 7 --workers 1
724+ run : pnpm run test.e2e.integrations.${{ matrix.settings.browser }} --timeout 60000 --retries 7 --workers 1
725725
726726 - name : Validate Create Qwik Cli
727727 if : matrix.settings.host != 'windows-latest'
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ export default defineConfig({
3333 // name: 'firefox',
3434 // use: { ...devices['Desktop Firefox'] },
3535 // },
36- // {
37- // name: 'webkit',
38- // use: { ...devices['Desktop Safari'] },
39- // },
36+ {
37+ name : 'webkit' ,
38+ use : { ...devices [ 'Desktop Safari' ] } ,
39+ } ,
4040 ] ,
4141
4242 webServer : {
Original file line number Diff line number Diff line change 261261 "test.e2e.cli" : " pnpm --filter qwik-cli-e2e e2e" ,
262262 "test.e2e.firefox" : " playwright test starters --browser=firefox --config starters/playwright.config.ts" ,
263263 "test.e2e.webkit" : " playwright test starters --browser=webkit --config starters/playwright.config.ts" ,
264- "test.e2e.integrations" : " playwright test e2e/adapters-e2e/tests --config e2e/adapters-e2e/playwright.config.ts" ,
264+ "test.e2e.integrations.chromium" : " playwright test e2e/adapters-e2e/tests --project=chromium --config e2e/adapters-e2e/playwright.config.ts" ,
265+ "test.e2e.integrations.webkit" : " playwright test e2e/adapters-e2e/tests --project=webkit --config e2e/adapters-e2e/playwright.config.ts" ,
265266 "test.rust" : " make test" ,
266267 "test.rust.update" : " make test-update" ,
267268 "test.unit" : " vitest packages" ,
You can’t perform that action at this time.
0 commit comments