es6-karma-jasmine-webpack-boilerplate
es6-karma-jasmine-webpack-boilerplate copied to clipboard
Incorrect babel include path in karma config
include: path.resolve(__dirname, '../src'),
"../src" should be "src" since karma.config.js
is in the root directory. I am putting my tests in "spec" instead of "src/test" and when I tried to add "../spec" to the loader it didn't work, but "spec" and "src" did.
It appears that the config is currently including files based on the includes for "babel-istanbul", and this babel loader block doesn't actually have any affect because the path doesn't exist.