1.0.0 • Published 6 years ago

gulp-tape v1.0.0

Weekly downloads
460
License
MIT
Repository
github
Last release
6 years ago

gulp-tape npm Version Build Status

Run Tape tests in Gulp.

Usage

const gulp = require('gulp')
const tape = require('gulp-tape')

gulp.task('test', function () {
  return gulp.src('test/*.js')
    .pipe(tape({
      bail: true
    }))
})

API

const tape = require('gulp-tape')

tape(options)

options is an optional object literal.

KeyDescriptionDefault
bailWhether to stop the Gulp process on the first failing assertion.false
nycWhether to compute test coverage using nyc. (Specify nyc options in your package.json.)false
outputStreamThe stream to pipe the test output.process.stdout
requireModules to load before running the tests.[]

Installation

Install via yarn:

$ yarn add --dev gulp-tape

Or npm:

$ npm install --save-dev gulp-tape

License

MIT

1.0.0

6 years ago

0.0.11

6 years ago

0.0.10

6 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago