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.
This commit is contained in:
Robin Malfait 2024-10-23 20:52:09 +02:00 committed by GitHub
parent 2ecb94347a
commit 45c9dcee83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,10 +37,10 @@
"build": "turbo build --filter=!./playgrounds/*",
"postbuild": "node ./scripts/pack-packages.mjs",
"dev": "turbo dev --filter=!./playgrounds/*",
"test": "cargo test && vitest run",
"test:integrations": "vitest --root=./integrations --no-file-parallelism",
"test": "cargo test && vitest run --hideSkippedTests",
"test:integrations": "vitest --root=./integrations --no-file-parallelism --hideSkippedTests",
"test:ui": "pnpm run --filter=tailwindcss test:ui",
"tdd": "vitest",
"tdd": "vitest --hideSkippedTests",
"bench": "vitest bench",
"version-packages": "node ./scripts/version-packages.mjs",
"vite": "pnpm run --filter=vite-playground dev",