Releases: rolaveric/karma-systemjs
v0.16.0
0.13.0
0.10.0
0.9.0
0.8.2
0.8.1
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"
]
}
}
0.8.0-beta2
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"
]
}
}