fix(test-output): Remove global noopReporter to restore test visibility

Removed the "./noopReporter.ts" from the global Vitest reporters
configuration to ensure test outputs are visible by default. This change
addresses an issue where the output from all tests was being hidden,
making it difficult to observe test results directly. The noopReporter
can still be used selectively for specific tests via:
npx vitest --reporter=./noopReporter.ts run tests/pox-4/pox-4.stateful-prop.test.ts
This commit is contained in:
Nikos Baxevanis
2024-03-29 07:22:00 +01:00
parent 7ff85f5832
commit 6254bac7c7

View File

@@ -29,7 +29,6 @@ export default defineConfig({
threads: { singleThread: true },
forks: { singleFork: true },
},
reporters: ["./noopReporter.ts"],
setupFiles: [
vitestSetupFilePath,
// custom setup files can be added here