Skip to content

Commit 8a59e41

Browse files
committed
feat(e2e): add playwright show-report script
1 parent 87e5a21 commit 8a59e41

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

apps/solidjs-boilerplate/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"test:watch": "vitest",
1212
"coverage": "vitest run --coverage",
1313
"test:e2e": "playwright test",
14+
"test:e2e:report": "playwright show-report",
1415
"lint": "eslint --ext .ts,tsx",
1516
"lint:fix": "eslint --fix --ext .ts,tsx",
1617
"lint:css": "stylelint src/**/*{,.*}.{css,scss} --fix",

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"test": "turbo test",
66
"test:watch": "turbo test:watch",
77
"test:e2e": "turbo test:e2e --filter=solidjs-boilerplate",
8+
"test:e2e:report": "turbo test:e2e:report --filter=solidjs-boilerplate",
89
"coverage": "turbo coverage",
910
"lint": "turbo lint",
1011
"lint:fix": "turbo lint:fix",

turbo.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"dependsOn": ["^build"],
2222
"cache": false
2323
},
24+
"test:e2e:report": {
25+
"cache": false
26+
},
2427
"coverage": {
2528
"outputs": ["coverage/**"],
2629
"dependsOn": ["^build"]

0 commit comments

Comments
 (0)