Skip to content

Commit a83d646

Browse files
authored
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 the progress visualization is more important . It's also more readable if you skip many tests (i.e. run isolated tests) Closes angular#16167
1 parent 919087f commit a83d646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

karma-shared.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = function(config, specificOptions) {
1010
browserDisconnectTimeout: 10000,
1111
browserDisconnectTolerance: 2,
1212
browserNoActivityTimeout: 30000,
13-
reporters: ['spec'],
13+
reporters: ['dots'],
1414
specReporter: {
1515
maxLogLines: 5, // limit number of lines logged per test
1616
suppressErrorSummary: true, // do not print error summary

0 commit comments

Comments
 (0)