From b43a993ae2e9827362c8ea82609ba50f89cf8306 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 9 May 2018 17:05:03 -0700 Subject: [PATCH] karma.conf.js - Switch singleRun back to `false` default It's useful to have two ways of running the Karma test suite: * For continuous integration, run once and report back with a file. (This has been `karma start --browsers PhantomJS --single-run --reporters dots,junit`.) * For local dev, run in a watch/live/monitoring mode which auto-executes any time you edit the JS code. (This has been `karma start`) This partially reverts a recent change so that the second one works the same way as before. --- karma.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karma.conf.js b/karma.conf.js index 577f7248ca..d1c9cd3487 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -67,6 +67,6 @@ module.exports = function(config) { outputFile: 'tests/output/karma.xml', suite: '' }, - singleRun: true + singleRun: false }); }; -- 2.25.1