Skip to content

Commit 1d73fe5

Browse files
committed
refactor: rename e2e test script to test:e2e to avoid turbo conflict
1 parent da03f50 commit 1d73fe5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/ci/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ runs:
1717
shell: bash
1818
- run: pnpm fmt:check
1919
shell: bash
20-
- run: pnpm exec turbo run lint test type-check --filter='!e2e'
20+
- run: pnpm exec turbo run lint test type-check
2121
shell: bash

e2e/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"private": true,
44
"type": "module",
55
"scripts": {
6-
"test": "playwright test",
7-
"test:ui": "playwright test --ui",
6+
"test:e2e": "playwright test",
7+
"test:e2e:ui": "playwright test --ui",
88
"dev": "vite --config app/vite.config.ts",
99
"deploy:backend": "cd backend && tailor-sdk apply --workspace-id $TAILOR_PLATFORM_WORKSPACE_ID --yes"
1010
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"build": "turbo build",
77
"type-check": "turbo type-check",
88
"lint": "turbo lint",
9-
"test": "turbo test --filter='!e2e'",
9+
"test": "turbo test",
1010
"fmt": "oxfmt",
1111
"fmt:check": "oxfmt --check",
1212
"changeset:create": "changeset",

0 commit comments

Comments
 (0)