I\'m trying to add some unit tests to one of my projects.
So far I\'ve installed and configured karma, and have installed jasmine. I\'ve one test file in my te
te
If you name your karma config file karma.conf.js, you can simply type karma start.
karma.conf.js
karma start
Otherwise specify the filename karma start karmafile.js
karma start karmafile.js
(I was in the right directory, but was not specifying a file name.)