omerts-karma-jspm

2.0.0-beta.2 • Public • Published

This is a form of the karma-jspm: https://github.com/Workiva/karma-jspm

karma-jspm Build Status

karma-jspm includes the jspm module loader for karma runs. This allows dynamic loading of src/test files and modules. No longer do you need to worry about browserifying your src or tests before every test run!

Installation##

Available in npm: npm install karma-jspm

This plugin assumes you are using jspm in your project. You will need to have a config.js in the root of your project (though this is configurable) as well as a jspm_packages directory containing systemjs and the es6-module-loader.

Configuration##

karma.conf.js

Include this plugin in your frameworks:

frameworks: ['jspm', 'jasmine'],

Karma auto loads plugins unless you specify a plugins config. If you have one, you'll also need to add it there:

plugins: ['karma-jspm', 'karma-phantomjs-launcher'],

The loadFiles configuration tells karma-jspm which files should be dynamically loaded via systemjs before the tests run. Globs or regular file paths are acceptable.

You should not include these in the regular karma files array. karma-jspm takes care of this for you.

jspm: {
    // Edit this to your needs
    loadFiles: ['src/**/*.js', 'test/**/*.js']
}

That's it!

Optional Configuration###

You may have named your jspm config.js file or jspm_packages directory something else. In this case simply add that to the jspm configuration in karma.conf.js:

jspm: {
    config: "myJspmConfig.js",
    packages: "my_jspm_modules/"
}

You may want to make additional files/a file pattern available for jspm to load, but not load it right away. Simply add that to serveFiles. One use case for this is to only put test specs in loadFiles, and jspm will only load the src files when and if the test files require them. Such a config would look like this:

jspm: {
    loadFiles: ['test/**/*.js'],
    serveFiles: ['src/**/*.js']
}

By default karma-jspm ignores jspm's bundles configuration. To re-enable it, specify the useBundles option.

jspm: {
    useBundles: true
}

Depending on your framework and project structure it might be necessary to override jspm paths for the testing scenario. In order to do so just add the paths property to the jspm config object in your karma-configuration file, along with the overrides:

jspm: {
    paths: {
        '*': 'yourpath/*.js',
        ...
    }
}

Versions

Current Tags

Version History

Package Sidebar

Install

npm i omerts-karma-jspm

Weekly Downloads

0

Version

2.0.0-beta.2

License

Apache-2.0

Last publish

Collaborators

  • omerts