We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2708d5 commit c35e8c9Copy full SHA for c35e8c9
2 files changed
.github/workflows/e2e.yml
@@ -54,7 +54,7 @@ jobs:
54
run: npx wait-on http://localhost:3333
55
56
- name: 🌐 Install Playwright browsers
57
- run: cd e2e && npx playwright install --with-deps && cd ..
+ run: cd e2e && yarn install && cd ..
58
59
- name: ✅ Run Playwright E2E tests
60
run: cd e2e && yarn test && cd ..
e2e/package.json
@@ -1,8 +1,8 @@
1
{
2
- "name": "todomvc-test",
+ "name": "e2e",
3
"version": "0.0.1",
4
"scripts": {
5
- "postinstall": "npx playwright install-deps && npx playwright install",
+ "install": "npx playwright install-deps && npx playwright install",
6
"test": "npx playwright test"
7
},
8
"keywords": [],
0 commit comments