Package Exports
- gulp-jasmine
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-jasmine) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-jasmine 
Run Jasmine 2 tests in Node.js
Issues with the output should be reported on the Jasmine issue tracker.
Install
$ npm install --save-dev gulp-jasmineUsage
var gulp = require('gulp');
var jasmine = require('gulp-jasmine');
gulp.task('default', function () {
return gulp.src('spec/test.js')
.pipe(jasmine());
});API
jasmine([options])
options
verbose
Type: boolean
Default: false
Display spec names in default reporter.
includeStackTrace
Type: boolean
Default: false
Include stack traces in failures in default reporter.
reporter
Type: object, array of objects
Reporters to use.
var gulp = require('gulp');
var jasmine = require('gulp-jasmine');
var reporters = require('jasmine-reporters');
gulp.task('default', function () {
return gulp.src('spec/test.js')
.pipe(jasmine({
reporter: new reporters.JUnitXmlReporter()
}));
});timeout
Type: number
Default 5000
Time to wait in milliseconds before a test automatically fails.
config
Type: object
Passes the config to Jasmine's loadConfig method.
License
MIT © Sindre Sorhus