Skip to content

Commit 46e83fb

Browse files
authored
Merge pull request #7490 from QwikDev/fix-integrations-tests-ci
fix: integration tests on CI
2 parents ab5de20 + aca3a68 commit 46e83fb

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'

e2e/adapters-e2e/playwright.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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: {

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,8 @@
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",

0 commit comments

Comments
 (0)