Adapter not recognized by karma
See original GitHub issueAs of today, getting the following error:
Firefox 34.0.0 (Mac OS X 10.10) ERROR
You need to include some adapter that implements __karma__.start method!
We are running karma 0.12.19, karma-mocha 0.1.6, and mocha 1.21.3. Tried updating everything to the latest versions with the same result.
Issue Analytics
- State:
- Created 9 years ago
- Comments:26 (11 by maintainers)
Top Results From Across the Web
Error: You need to include some adapter that implements ...
I was facing this issue while running specs on the Angular.js codebase. I had to run npm install karma-jasmine -g to get this...
Read more >Configuration File - Karma
The easiest way to generate an initial configuration file is by using the karma init command. This page lists all of the available...
Read more >karma-runner/karma - Gitter
Hi, unlike node, V8 logs a an error thrown inside a Promise, and Karma reports a test as failed. Is it possible to...
Read more >karma-jasmine-jquery-fix - npm
Jasmine-jquery plugin for Jasmine in karma. ... Start using karma-jasmine-jquery-fix in your project by running ... It karma adapter for.
Read more >Karma JS Testing: What, Why, and How to Get Going Right Now
There are available plugins for the most well-known testing frameworks. Alternatively, you can also write an adapter for your favorite testing ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@NullVoxPopuli it looks like a bug in karma so I think a fix will be more helpful 😃
@NullVoxPopuli, first of all, you still should make
$root/**/*.js
more specific because webpack is processing adapter fileSecond, you can’t use
{}
for files because it breaks karma - https://github.com/NullVoxPopuli/react-vs-ember/blob/master/testing/react/tests/karma.conf.js#L16So you can replace it by this:
It should work