Skip to content

Commit 45c9dce

Browse files
authored
Hide skipped tests (#14766)
Very small quality of life improvement, but let's hide skipped tests. The summary still shows that there are skipped tests, but this makes the UI much better. Especially when debugging a single test, then you don't need to scroll up all the time.
1 parent 2ecb943 commit 45c9dce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
"build": "turbo build --filter=!./playgrounds/*",
3838
"postbuild": "node ./scripts/pack-packages.mjs",
3939
"dev": "turbo dev --filter=!./playgrounds/*",
40-
"test": "cargo test && vitest run",
41-
"test:integrations": "vitest --root=./integrations --no-file-parallelism",
40+
"test": "cargo test && vitest run --hideSkippedTests",
41+
"test:integrations": "vitest --root=./integrations --no-file-parallelism --hideSkippedTests",
4242
"test:ui": "pnpm run --filter=tailwindcss test:ui",
43-
"tdd": "vitest",
43+
"tdd": "vitest --hideSkippedTests",
4444
"bench": "vitest bench",
4545
"version-packages": "node ./scripts/version-packages.mjs",
4646
"vite": "pnpm run --filter=vite-playground dev",

0 commit comments

Comments
 (0)