gulp-jasmine
Run Jasmine tests with minijasminenode (Jasmine 1.3)
Issues with the output should be reported on the minijasminenode issue tracker.
$ npm install --save-dev gulp-jasmine
var gulp = require('gulp');
var jasmine = require('gulp-jasmine');
gulp.task('default', function () {
return gulp.src('spec/test.js')
.pipe(jasmine());
});
Type: Object
, Array
of Objects
Reporter(s) to use.
Type: Boolean
Default: false
Display spec names.
Type: Boolean
Default: false
Include stack traces in failures.
Type: Number
Default 5000
Time to wait in milliseconds before a test automatically fails.