-
-
Save LespiletteMaxime/1d788a88c0c40896e66b to your computer and use it in GitHub Desktop.
Gulp JS testing bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var phpspec = require('gulp-phpspec'); | |
var run = require('gulp-run'); | |
var notify = require('gulp-notify'); | |
gulp.task('test', function() { | |
gulp.src('spec/**/*.php') | |
.pipe(run('clear')) | |
.pipe(phpspec('', { notify: true })) | |
.on('error', notify.onError({ | |
title: 'Dangit', | |
message: 'Your tests failed!', | |
icon: __dirname + '/fail.png' | |
})) | |
.pipe(notify({ | |
title: 'Success', | |
message: 'All tests have returned green!' | |
})); | |
}); | |
gulp.task('watch', function() { | |
gulp.watch(['spec/**/*.php', 'src/**/*.php'], ['test']); | |
}); | |
gulp.task('default', ['test', 'watch']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment