From 6254bac7c7afbce67665795acd1bb9efa9c4bdbe Mon Sep 17 00:00:00 2001 From: Nikos Baxevanis Date: Fri, 29 Mar 2024 07:22:00 +0100 Subject: [PATCH] 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 --- contrib/core-contract-tests/vitest.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/contrib/core-contract-tests/vitest.config.js b/contrib/core-contract-tests/vitest.config.js index 3059a2005..364c55f73 100644 --- a/contrib/core-contract-tests/vitest.config.js +++ b/contrib/core-contract-tests/vitest.config.js @@ -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