karma-systemjs icon indicating copy to clipboard operation
karma-systemjs copied to clipboard

Karma plugin for using SystemJS as a module loader

Results 16 karma-systemjs issues
Sort by recently updated
recently updated
newest added

I have been struggling with this issue for two days now. It seems karma is looking for plugins locally but I am still getting this error. I also tried loading...

When I follow the advice in the readme to help my tests run faster by using a pattern object for my 3rd party libraries like this: ``` systemjs: { serveFiles:...

My `karma.conf.js` file reads: ``` module.exports = function(config) { config.set({ basePath: '.', frameworks: ['systemjs', 'jasmine'], browsers: ['Chrome'], plugins: [ 'karma-chrome-launcher', 'karma-jasmine', 'karma-systemjs' ], systemjs: { configFile: 'jspm.config.js', config: { defaultJSExtensions:...

Just been playing around with this, and it seems great. I was just thinking if I want to write my tests themselves as modules loaded through SystemJS, then it can...

My code uses an external created systemjs bundle. The bundle is loaded by using karma.config.files. ie ``` files: [ {pattern: 'bower_components/external_bundle.js', included: true} ], ``` When running the tests the...

Based on this discussion https://github.com/systemjs/systemjs/issues/172, I'm trying to implement a cache busting extension for karma-systemjs. There is a doc page (https://github.com/ModuleLoader/es6-module-loader/blob/master/docs/loader-extensions.md#custom-extension-example---cache-busting-extension) showig how to extend the ES6 loader. How can...