From 36c72c9990e207920c64b4c38db47179ed3dd029 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 14 Jun 2022 16:28:06 -0500 Subject: [PATCH] Jest: add back default reporter, fix empty cli output --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 924d6f766..e86307f93 100644 --- a/jest.config.js +++ b/jest.config.js @@ -28,7 +28,7 @@ module.exports = { ], 'coverageDirectory': '/.coverage/', 'coverageReporters': ['html', 'text', 'text-summary', 'cobertura'], - 'reporters': ['jest-junit'], + 'reporters': ['default', 'jest-junit'], 'moduleDirectories': [ '/node_modules', '/app',