From fa036c8cf80a172a6987603fd2bd743955c522a5 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 11 Aug 2017 09:35:01 +0200 Subject: [PATCH] chore(karma): use dots reporter by default dots is nicer for local testing, as you usually don't run a ton of test suites, and it's also more readable if you skip many tests (i.e. run isolated tests) --- karma-shared.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karma-shared.conf.js b/karma-shared.conf.js index 2a63ac4466be..6609c05fd76c 100644 --- a/karma-shared.conf.js +++ b/karma-shared.conf.js @@ -10,7 +10,7 @@ module.exports = function(config, specificOptions) { browserDisconnectTimeout: 10000, browserDisconnectTolerance: 2, browserNoActivityTimeout: 30000, - reporters: ['spec'], + reporters: ['dots'], specReporter: { maxLogLines: 5, // limit number of lines logged per test suppressErrorSummary: true, // do not print error summary