From 493f7ee7c2e1da135f3b3af432f8c2ed398f4825 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 20 Oct 2018 14:53:04 +0200 Subject: [PATCH] use normal reporters --- jest.config.ci.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jest.config.ci.js b/jest.config.ci.js index c28f6d8db341..b340d974470c 100644 --- a/jest.config.ci.js +++ b/jest.config.ci.js @@ -2,9 +2,8 @@ // Object spread is just node 8 module.exports = Object.assign({}, require('./jest.config'), { - coverageReporters: ['json'], reporters: [ ['jest-junit', {output: 'reports/junit/js-test-results.xml'}], - ['jest-silent-reporter', {useDots: true}], + 'default', ], });