Start using gulp to run quint test suite through phantomjs.

Eventually all build scripts shall run through this.
This commit is contained in:
Jürg Lehni 2015-07-27 11:53:08 +02:00
parent 3816407ee7
commit 6712cbb4e9
3 changed files with 12 additions and 2 deletions

7
gulpfile.js Normal file
View file

@ -0,0 +1,7 @@
var gulp = require('gulp'),
qunit = require('gulp-qunit');
gulp.task('test', function() {
return gulp.src('./test/index.html')
.pipe(qunit());
});