karma-jspm
karma-jspm copied to clipboard
Paths wild card incorrectly being applied.
jspm: {
paths: {
"*": "js/*"
},
// Edit this to your needs
loadFiles: ['tests/**/*.js', 'js/**/*.js'],
},
With the above config it seems to be applying the wild card to all files now. When it loads the tests file it's now grabbing/base/js/tests/SimpleSpec.js but it should be pointing to /base/tests/SimpleSpec.js
This is happening to me as well. @mfrancis107 did you manage to work around it?