@aleen42/karma-triflejs-launcher
v1.0.1
Published
A karma launcher for using TrifleJS to launch IEs.
Downloads
7
Readme
karma-triflejs-launcher
Launcher for TrifleJS (developer version).
Notice: Karma cannot capture headless IE8 / IE7.
Installation
npm install @aleen42/karma-triflejs-launcher --save-dev
Configuration
configuration file:
// karma.conf.js module.exports = config => { config.set({ // ... browsers : ['IE9'], plugins : [ // ... '@aleen42/karma-triflejs-launcher', ], customLaunchers : { IE9 : { base : 'TrifleJS', flags : ['--emulate=IE9'], platform : 'windows', displayName : 'IE9 (TrifleJS)', }, }, // ... }); };
CLI arguments:
karma start --browsers TrifleJS
Release History
- ==================== 1.0.0 Initial release ====================
- 1.0.1: fix parallel bug
:fuelpump: How to contribute
Have an idea? Found a bug? See How to contribute.
:scroll: License
MIT © aleen42
For more information on Karma see the homepage.