From b28028ac4082842143b0f528d6bc539da6ccb419 Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Thu, 21 Sep 2017 12:49:18 -0400 Subject: mega changes, including updates and X --- www/lib/ng-websocket/Gulpfile.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 www/lib/ng-websocket/Gulpfile.js (limited to 'www/lib/ng-websocket/Gulpfile.js') diff --git a/www/lib/ng-websocket/Gulpfile.js b/www/lib/ng-websocket/Gulpfile.js new file mode 100644 index 00000000..c3a248e2 --- /dev/null +++ b/www/lib/ng-websocket/Gulpfile.js @@ -0,0 +1,15 @@ +var gulp = require('gulp'), + karma = require('gulp-karma'); + +gulp.task('test', function () { + return gulp.src([ + 'bower_components/angular/angular.js', + 'bower_components/angular-mocks/angular-mocks.js', + 'ng-websocket.js', + 'test/unit/**/*.js' + ]) + .pipe(karma({ + configFile: 'test/karma.conf.js', + action: 'run' + })); +}); \ No newline at end of file -- cgit v1.2.3