Skip to content

Commit 13278da

Browse files
committed
Update dependencies, enhance Playwright configuration, and refactor end-to-end testing scripts
- Added 'concurrently' and 'typescript' to package.json and package-lock.json. - Introduced a new Playwright configuration file for streamlined testing. - Refactored end-to-end testing scripts to use a shell script for running tests across examples. - Updated GitHub Actions workflow to reflect changes in test execution commands. - Removed outdated Playwright configuration from Angular example and added new load tests.
1 parent a5a8ecd commit 13278da

10 files changed

+400
-67
lines changed

.github/workflows/playwright.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Playwright Browsers
1919
run: npm exec playwright install --with-deps
2020
- name: Run Playwright tests
21-
run: cd examples/angular && npm run e2e
21+
run: npm run e2e-tests
2222
- uses: actions/upload-artifact@v4
2323
if: ${{ !cancelled() }}
2424
with:

examples/angular/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"start": "ng serve",
77
"build": "ng build",
88
"watch": "ng build --watch --configuration development",
9-
"test": "ng test",
10-
"e2e": "playwright test"
9+
"test": "ng test"
1110
},
1211
"private": true,
1312
"dependencies": {

examples/angular/playwright.config.ts

-11
This file was deleted.

0 commit comments

Comments
 (0)