From 802d99179d0ce0a968390349fcff361dd4f81793 Mon Sep 17 00:00:00 2001 From: Salil Apte Date: Wed, 25 Oct 2023 21:04:10 +0530 Subject: [PATCH] set verbose flag to false to enable console * this fix will work for running individual jest unit tests as well has running the script included in the package.json file --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a1b2525e0..b7b4dfc21 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "postinstall": "patch-package", "start": "electron .", "test": "npm-run-all test:*", - "test:jest": "jest --runInBand --detectOpenHandles --colors --transformIgnorePatterns 'node_modules/(?!astronomia)/' -- ", + "test:jest": "jest --runInBand --verbose=false --detectOpenHandles --colors --transformIgnorePatterns 'node_modules/(?!astronomia)/' -- ", "test:mocha": "nyc --reporter=lcov --reporter=json mocha tests/*", "setup:win": "node scripts/create_windows_installer.js" },