From 45c9dcee83b91870e2676bbcf2c565a744387e7e Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Wed, 23 Oct 2024 20:52:09 +0200 Subject: [PATCH] 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. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 095a91db8..700cd40d7 100644 --- a/package.json +++ b/package.json @@ -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",