goinstant / gulp-dalek

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 corresponding Dalek browser plugins installed.

reporter

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.

License

© 2014 GoInstant Inc., a salesforce.com company. Licensed under the BSD 3-clause license.

GoInstant

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 100.0%