forked from samiulhoque/codility-lessons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
24 lines (21 loc) · 675 Bytes
/
gulpfile.js
File metadata and controls
24 lines (21 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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('', {'verbose': 'v', notify: true}))
.on('error', notify.onError({
title: "Crap",
message: "Your tests failed, Samiul"
}))
.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']);