File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @builder.io/qwik ' : patch
3+ ---
4+
5+ CI: add qwik react e2e test runs to ci
Original file line number Diff line number Diff line change @@ -713,6 +713,8 @@ jobs:
713713 mv artifact-create-qwik/* packages/create-qwik/dist/
714714 mkdir -p packages/eslint-plugin-qwik/dist/
715715 mv artifact-eslint-plugin-qwik/* packages/eslint-plugin-qwik/dist/
716+ mkdir -p packages/qwik-react/lib/
717+ mv artifact-qwikreact/lib/* packages/qwik-react/lib/
716718
717719 - run : pnpm install --frozen-lockfile
718720
@@ -725,6 +727,9 @@ jobs:
725727 - name : Playwright E2E Integration Tests
726728 run : pnpm run test.e2e.integrations.${{ matrix.settings.browser }} --timeout 60000 --retries 7 --workers 1
727729
730+ - name : Playwright E2E Qwik React Tests
731+ run : pnpm run test.e2e.qwik-react.${{ matrix.settings.browser }} --timeout 60000 --retries 7 --workers 1
732+
728733 - name : Validate Create Qwik Cli
729734 if : matrix.settings.host != 'windows-latest'
730735 run : pnpm cli.validate
Original file line number Diff line number Diff line change 245245 "test.e2e.integrations.webkit" : " playwright test e2e/adapters-e2e/tests --project=webkit --config e2e/adapters-e2e/playwright.config.ts" ,
246246 "test.e2e.webkit" : " playwright test starters --browser=webkit --config starters/playwright.config.ts" ,
247247 "test.e2e.qwik-react.chromium" : " playwright test e2e/qwik-react-e2e/tests --project=chromium --config e2e/qwik-react-e2e/playwright.config.ts" ,
248+ "test.e2e.qwik-react.webkit" : " playwright test e2e/qwik-react-e2e/tests --project=webkit --config e2e/qwik-react-e2e/playwright.config.ts" ,
248249 "test.rust" : " make test" ,
249250 "test.rust.update" : " make test-update" ,
250251 "test.unit" : " vitest packages" ,
You can’t perform that action at this time.
0 commit comments