Issues with the output should be reported on the Dalek issue tracker.
$ npm install --save-dev gulp-dalek
var gulp = require('gulp');
var dalek = require('gulp-dalek');
gulp.task('test', function() {
return gulp.src(['test/functional/base.js'])
.pipe(dalek({
browser: ['phantomjs', 'chrome', 'chrome:canary'],
reporter: ['html', 'junit']
}));
});
Advanced options must be specified in your Dalekfile
.
Options are applied to the correct files.
Type: array
Default: null
The browsers you would like to test.
With the exception of PhantomJS, you need to have the corresponding Dalek browser plugins installed.
Type: array
Default: null
The reporters you would like to invoke
With the exception of console output, you need to have the corresponding Dalek reporter plugins installed.
© 2014 GoInstant Inc., a salesforce.com company. Licensed under the BSD 3-clause license.