You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
295 B
14 lines
295 B
var gulp = require('gulp');
|
|
var jasmine = require('gulp-jasmine');
|
|
|
|
gulp.task('test', function () {
|
|
return gulp
|
|
.src('compare-strings.spec.js')
|
|
.pipe(jasmine());
|
|
});
|
|
|
|
gulp.task('watch', function () {
|
|
gulp.watch('compare-strings*.js', ['test']);
|
|
});
|
|
|
|
gulp.task('default', ['watch']);
|
|
|