karma.conf.js - Switch singleRun back to `false` default
authorTim Otten <totten@civicrm.org>
Thu, 10 May 2018 00:05:03 +0000 (17:05 -0700)
committerTim Otten <totten@civicrm.org>
Thu, 10 May 2018 00:05:03 +0000 (17:05 -0700)
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

index 577f7248ca6a011ccc979abeadaa9204fcd14d32..d1c9cd3487fd92e2c41ff3800a554f3e608a7bb0 100644 (file)
@@ -67,6 +67,6 @@ module.exports = function(config) {
       outputFile: 'tests/output/karma.xml',
       suite: ''
     },
-    singleRun: true
+    singleRun: false
   });
 };