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)
commitb43a993ae2e9827362c8ea82609ba50f89cf8306
treeaabfb104619713cc3a561773bdba48bf03c6adec
parentf13ec3b56d02178673b6769167e9d8dd20ce6b6b
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