Skip to content

Instantly share code, notes, and snippets.

@slawisha
Forked from laracasts/Gulpfile.js
Created August 29, 2014 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slawisha/d7d0c170ccb0d04e29c8 to your computer and use it in GitHub Desktop.
Save slawisha/d7d0c170ccb0d04e29c8 to your computer and use it in GitHub Desktop.
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