0.1.0 • Published 7 years ago

gulp-nodeunit v0.1.0

Weekly downloads
82
License
MIT
Repository
github
Last release
7 years ago

gulp-nodeunit

Run nodeunit tests from gulp

Install

npm install --save-dev gulp-nodeunit

Example

var gulp     = require('gulp'),
	nodeunit = require('gulp-nodeunit');

gulp.task('default', function () {
	gulp.src('**/*.test.js')
		.pipe(nodeunit({
			reporter: 'junit',
			reporterOptions: {
				output: 'test'
			}
		}));
});
0.1.0

7 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago