0.8.0
This release changes how karma-systemjs picks files to be imported.
It now looks for all patterns from files in the Karma config where {included: true} (Which is the default if only a string is provided) and calls System.import() for all files that match those patterns.
If you have files that you only want to serve but not immediately import, you can add patterns for them to systemjs.serveFiles in the Karma config.
{
// Import all my test files by default
"files": [
"test/**/*.js"
],
systemjs: {
// Serve source code and libraries for tests to import
serveFiles: [
"src/**/*.js",
"lib/**/*.js"
]
}
}