Created
August 20, 2014 20:47
-
-
Save laracasts/52a9f085408605a06400 to your computer and use it in GitHub Desktop.
PHPSpec auto-testing Gulpfile
This file contains hidden or 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']); |
THis does not work anymore with Gulp4
Use this: https://github.com/fetzi/phpspec-watcher
Gulp 4
var gulp = require('gulp');
var phpspec = require('gulp-phpspec');
var run = require('gulp-run');
var notify = require('gulp-notify');
gulp.task('test', function(done){
gulp.src('spec/**/*.php')
.pipe(run('clear').exec())
.pipe(phpspec('', {notify:true}))
.on('error', notify.onError({
'title': 'Failed!!!',
'message': 'Your test failed'
//'icon': __dirname + '/fail.png',
}))
.pipe(notify({
'title': 'Success',
'message': 'All tests have returned green'
}));
done();
});
gulp.task('watch', function(){
gulp.watch(['spec/**/*.php', 'src/**/*.php'], gulp.series(['test']));
});
gulp.task('default', gulp.series(['test','watch']));
Gulp 4
var gulp = require('gulp'); var phpspec = require('gulp-phpspec'); var run = require('gulp-run'); var notify = require('gulp-notify'); gulp.task('test', function(done){ gulp.src('spec/**/*.php') .pipe(run('clear').exec()) .pipe(phpspec('', {notify:true})) .on('error', notify.onError({ 'title': 'Failed!!!', 'message': 'Your test failed' //'icon': __dirname + '/fail.png', })) .pipe(notify({ 'title': 'Success', 'message': 'All tests have returned green' })); done(); }); gulp.task('watch', function(){ gulp.watch(['spec/**/*.php', 'src/**/*.php'], gulp.series(['test'])); }); gulp.task('default', gulp.series(['test','watch']));
Great! Thanks!
But on macOS Catalina you don't need .exec() in line 8.
Maybe .exec() is for windows? If somebody knows pls put in the comments.
By the way you don't need the gulp-run here, because gulp-phpspec has:
API options.clear
Type: Boolean (Default: false)
Clear console before executing command
If you need an example or more phpspec options, i have a gist with my gulpfile here: https://gist.github.com/cofirazak/8dcf9b5204c7bdafd0f4bcff636a55ee
As a minor fix i would also convert var to const.
And no need in extra quotes around title, message, icon and message json keys.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes I had to change line 8 as well .pipe(run('clear').exec()).