computmaxer / karma-jspm

Other
74 stars 50 forks source link

Paths wild card incorrectly being applied. #96

Open mfrancis107 opened 9 years ago

mfrancis107 commented 9 years ago
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

carlesandres commented 8 years ago

This is happening to me as well. @mfrancis107 did you manage to work around it?