1.0.0 • Published 8 years ago

gulp-lab-no-spawn v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Gulp lab no spawn

A Gulp plugin for running lab tests programmatically in the same process as Gulp.

Install

npm install --save-dev gulp-lab-no-spawn

Usage

const gulp = require('gulp');
const lab = require('gulp-lab-no-spawn');

gulp.task('test', () => {
  return gulp
    .src(['test/**/*.spec.js', 'modules/**/*.spec.js'], {read: false})
    .pipe(lab({
      verbose: true,
      leaks: false
    }))
    .once('error', function(err) {
      done(err);
      process.exit(1);
    })
    .once('end', function() {
      done();
      process.exit();
    });
});

For the list of options supported by your lab version, see internals.defaults in node_modules/lab/lib/runner.js.