rolaveric / karma-systemjs

Karma plugin for using SystemJS as a module loader
MIT License
40 stars 19 forks source link

Breaking change in 0.8.0 not documented. #50

Closed richburdon closed 9 years ago

richburdon commented 9 years ago

I have the (simplified) config below. Moving from 0.7.2 to 0.8.0 no tests are found.

module.exports = function(config) {
  config.set({
    "basePath": "src/main/javascript/",
    "systemjs": {
      "configFile": "config.js",
      "files": [
        "app/**/*.js",               // NO TESTS ARE FOUND IN 0.8.0
      ]
    },
    "files": [
      "testing/**/*.js"              // THIS IS NOW IGNORED IN 0.8.0
    ],
  });
}
rolaveric commented 9 years ago

The discussion from this change is on #38 The README.md should describe how the configuration works, along with an addition to the Breaking Changes log at the bottom.