aurelia-pal-browser
Version:
The browser-specific implementation of Aurelia's platform abstraction layer.
41 lines (37 loc) • 858 B
JavaScript
var gulp = require('gulp');
var Karma = require('karma').Server;
/**
* Run test once and exit
*/
gulp.task('test', function (done) {
new Karma({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true
}, done).start();
});
/**
* Watch for file changes and re-run tests on each change
*/
gulp.task('tdd', function (done) {
new Karma({
configFile: __dirname + '/../../karma.conf.js'
}, done).start();
});
/**
* Run test once with code coverage and exit
*/
gulp.task('cover', function (done) {
new Karma({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true,
reporters: ['coverage'],
preprocessors: {
'test/**/*.js': ['babel'],
'src/**/*.js': ['babel', 'coverage']
},
coverageReporter: {
type: 'html',
dir: 'build/reports/coverage'
}
}, done).start();
});