UNPKG

guerrilla-api

Version:

Guerrilla-api is a node module that wraps the guerrilla api (I have chosen an amazing and creative name, don't you think so?) to smooth the comunication of your app/module with their service.

11 lines (8 loc) 184 B
var gulp = require('gulp'); var mocha = require('gulp-mocha'); gulp.task('test', function () { return gulp .src('test/*.js') .pipe(mocha()); }); gulp.task('default', ['test']);