1.0.7 • Published 9 years ago

gulp-jasmine-node v1.0.7

Weekly downloads
200
License
MIT
Repository
github
Last release
9 years ago

Gulp task for jasmine-node

This is a very basic implementation of a gulp task for jasmine-node

Install

npm install gulp-jasmine-node --save-dev

Usage

var jasmineNode = require('gulp-jasmine-node');

gulp.task('test', function () {
    return gulp.src(['spec/**/*spec.js']).pipe(jasmineNode({
        timeout: 10000
    }));
});

Options

timeout - Time in milliseconds to wait for async tests

includeStackTrace - Ability to suppress stack trace

color - Indicates spec output should uses color to indicates passing (green) or failing (red) specs

var jasmineNode = require('gulp-jasmine-node');

gulp.task('test', function () {
    return gulp.src(['spec/**/*spec.js']).pipe(jasmineNode({
        timeout: 10000,
        includeStackTrace: false,
        color: false
    }));
});

For more information about writing unit test with jasmine-node see https://github.com/mhevery/jasmine-node

Changelog

1.0.7

  • Fixed a bug that prevented async tests to be finalized (done callback never called)
1.0.7

9 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.0

11 years ago