From a48dcc189886941189a5818cdd0ba749af28772e Mon Sep 17 00:00:00 2001 From: Christian Kotzbauer Date: Sat, 17 Dec 2016 12:43:12 +0100 Subject: [PATCH] chore(test): run tests with gulp-jasmine --- gulpfile.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 978fd98..4f5a3b0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1 +1,12 @@ -require('require-dir')('build/tasks'); +var gulp = require("gulp"); +var jasmine = require("gulp-jasmine"); + +gulp.task("test", () => { + gulp.src("dist/test/test/**/*.js") + .pipe(jasmine({ + verbose: true, + includeStackTrace: true, + errorOnFail: false + })); +}); +