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:
721
721
run : pnpm run test.e2e.${{ matrix.settings.browser }} --timeout 60000 --retries 7 --workers 1
722
722
723
723
- 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
725
725
726
726
- name : Validate Create Qwik Cli
727
727
if : matrix.settings.host != 'windows-latest'
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ export default defineConfig({
33
33
// name: 'firefox',
34
34
// use: { ...devices['Desktop Firefox'] },
35
35
// },
36
- // {
37
- // name: 'webkit',
38
- // use: { ...devices['Desktop Safari'] },
39
- // },
36
+ {
37
+ name : 'webkit' ,
38
+ use : { ...devices [ 'Desktop Safari' ] } ,
39
+ } ,
40
40
] ,
41
41
42
42
webServer : {
Original file line number Diff line number Diff line change 261
261
"test.e2e.cli" : " pnpm --filter qwik-cli-e2e e2e" ,
262
262
"test.e2e.firefox" : " playwright test starters --browser=firefox --config starters/playwright.config.ts" ,
263
263
"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" ,
265
266
"test.rust" : " make test" ,
266
267
"test.rust.update" : " make test-update" ,
267
268
"test.unit" : " vitest packages" ,
You can’t perform that action at this time.
0 commit comments