Skip to content

Commit

Permalink
chore(test): run tests with gulp-jasmine
Browse files Browse the repository at this point in the history
  • Loading branch information
ckotzbauer committed Dec 17, 2016
1 parent f43ac61 commit a48dcc1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -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
}));
});

0 comments on commit a48dcc1

Please sign in to comment.