All Projects β†’ yuanqing β†’ gulp-tape

yuanqing / gulp-tape

Licence: MIT License
πŸ‘» Run Tape tests in Gulp.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gulp-tape

impatient-jekyll
Build a website yourself. Easy to use, get a fast workflow and fast website. http://bdavidxyz.github.io/impatient-jekyll/
Stars: ✭ 22 (+57.14%)
Mutual labels:  gulp
web-generator
πŸ‘‘ Gulp based task runner which creates HTML output from Pug HTML templates
Stars: ✭ 13 (-7.14%)
Mutual labels:  gulp
sample-ui-react
Material-UI+ React.js + Redux [ Pug / Scss / Babel ]
Stars: ✭ 15 (+7.14%)
Mutual labels:  gulp
gon
Not meer another f2e build tool
Stars: ✭ 13 (-7.14%)
Mutual labels:  gulp
bootstrap-gulp-starter-template
Bootstrap 4 + Gulp 4 + Panini for improve front-end development workflow
Stars: ✭ 67 (+378.57%)
Mutual labels:  gulp
gulp-webpack-boilerplate
A good foundation for your next frontend project.
Stars: ✭ 56 (+300%)
Mutual labels:  gulp
email-framework
A simple, gulp powered framework to develop and test responsive emails.
Stars: ✭ 19 (+35.71%)
Mutual labels:  gulp
react-flux-gulp-starter
A universal boilerplate for building React/Flux apps using Gulp and ES6.
Stars: ✭ 46 (+228.57%)
Mutual labels:  gulp
2life-server
πŸ’Œ εŒη”ŸοΌšι‡θ§ε¦δΈ€εŠηš„ηΎŽε₯½οΌšοΌ‰οΌˆζœεŠ‘η«―οΌ‰
Stars: ✭ 66 (+371.43%)
Mutual labels:  gulp
generator-espress
an opinionated yeoman generator that scaffolds a mvc express webapp completely in es6
Stars: ✭ 20 (+42.86%)
Mutual labels:  gulp
webpack-gulp-wordpress-starter-theme
A WordPress theme with Webpack & Gulp
Stars: ✭ 110 (+685.71%)
Mutual labels:  gulp
gulp-webdriver
gulp-webdriver is a gulp plugin to run selenium tests with the WebdriverIO testrunner
Stars: ✭ 77 (+450%)
Mutual labels:  gulp
i-Cut
πŸ”¨ δΈͺδΊΊζŠ€ζœ―ζ ˆ
Stars: ✭ 18 (+28.57%)
Mutual labels:  gulp
gulp-lesshint
Lint your .less files from Gulp with lesshint.
Stars: ✭ 14 (+0%)
Mutual labels:  gulp
design-studio one-page-template
Free responsive flat designed one page template
Stars: ✭ 67 (+378.57%)
Mutual labels:  gulp
cbmtapepi
Use a Raspberry Pi as fast mass storage solution for your Commodore 8-bit computer using just the datassette port.
Stars: ✭ 41 (+192.86%)
Mutual labels:  tape
middleman-gulp
A Middleman 4 template using Gulp.js via the external pipeline
Stars: ✭ 42 (+200%)
Mutual labels:  gulp
spring-boot-angular2-starter
Starter application. Spring Boot, Angular 2, TypeScript, Gulp, Gradle, SCSS.
Stars: ✭ 35 (+150%)
Mutual labels:  gulp
anyfs
Portable file system for Node
Stars: ✭ 17 (+21.43%)
Mutual labels:  gulp
landing
This project builds the static and internationalized landing page of Upplication.
Stars: ✭ 26 (+85.71%)
Mutual labels:  gulp

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.

Key Description Default
bail Whether to stop the Gulp process on the first failing assertion. false
nyc Whether to compute test coverage using nyc. (Specify nyc options in your package.json.) false
outputStream The stream to pipe the test output. process.stdout
require Modules 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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].