I\'m using Yeoman and generator-angular to manage AngularJS apps, but I\'m having trouble with automated testing.
Running grunt test will run unit tests onc
grunt test
Within the karma.conf.js file (approx line:38) find autoWatch = false; and change it to true.
Now if you run grunt karma:unit you will find that it leaves the test server running and any changes to project files immediately run the tests again.