karma-extjs
Use Karma to run tests for Ext JS applications. Run tests and measure coverage without any html-file facilitation.
$ npm install --save-dev karma-extjs
var karma = require('karma-extjs');
karma.run({
coverage: true,
staticPort: 9877,
jsb3: 'APP/build/packages.jsb3',
beforeSource: [
'extjs/ext-all.js',
'appconfig.js'
],
afterSource: [
'testapp.js'
],
tests: [
'APP/specs/**/*.spec.js'
]
});
The appconfig.js is typically a file that sets the Ext JS config. Something like:
Ext.Loader.setConfig({
enabled: true,
paths: {
'APP': 'http://' + window.location.host + '/base/APP/src',
'APPTests': 'http://' + window.location.host + '/base/APP/specs'
},
disableCaching: true
});
The testapp.js is typically a file that starts the Ext JS application. Somethig like:
Ext.Loader.loadScript({
url: '/base/APP/src/init.js',
onLoad: function () {
Ext.application({
inhibitLaunch: true
});
}
});
Type: string
Path to the jsb3 file of your application/package. This is used to append source files to Karma config in the correct order.
Type: Boolean
Default: false
Enable coverage. true
will add 'coverage' preprocessors to source files and add the coverage reporter.
Type: Number
Default 9877
Serve the root of the project. Karma will use this server as a proxy when files are layzy loaded.
Type: Array
of strings
File(s) to append to Karma files before the source files are appended.
Type: Array
of strings
File(s) to append to Karma files after the source files are appended.
Type: Object
Dictionary with Karma config.
Defaults:
- port:
9876
- singleRun:
true
- reporters:
progress
- browsers:
Chrome
- frameworks:
jasmine
Note: proxies option is overridden and cannot be configured through the API.