sladebot/redis-cache-sequelize

View on GitHub
gulpfile.js

Summary

Maintainability
A
0 mins
Test Coverage
var gulp = require('gulp'),
  mocha = require('gulp-mocha');



gulp.task('test', function() {
  return gulp.src('./test/**/*_spec.js', {read: false})
    .pipe(mocha())
        .once('error', function() {
            process.exit(1);
        })
        .once('end', function(){
            process.exit();
        });
    
})


gulp.task('default');