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
I've been struggling with this too. What I came up to is that this error occurs because one of the following reasons
karma.conf.js
in current dir or no config file specified in command)My problem was that my config file was named karma.config.js
instead of karma.conf.js
.
If you've installed the test adapter but it still doesn't work, try running karma init
and go through the guided config setup.