gulp-dalek
v0.0.1
Published
Run Dalek tests
Downloads
20
Maintainers
Readme
gulp-dalek
Issues with the output should be reported on the Dalek issue tracker.
Install
$ npm install --save-dev gulp-dalek
Usage
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']
});
});
API
dalek(options)
Advanced options must be specified in your Dalekfile
.
options
Options are applied to the correct files.
browser
Type: array
Default: null
The browsers you would like to test.
With the exception of PhantomJS, you need to have the Dalek browser plugin installed.
reporter
Type: array
Default: null
The reporters you would like to invoke
With the exception of console output, you need to have the Dalek reporter plugin installed.
License
© 2014 GoInstant Inc., a salesforce.com company. Licensed under the BSD 3-clause license.