mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-07-27 14:20:12 -04:00
Start using gulp to run quint test suite through phantomjs.
Eventually all build scripts shall run through this.
This commit is contained in:
parent
3816407ee7
commit
6712cbb4e9
3 changed files with 12 additions and 2 deletions
7
gulpfile.js
Normal file
7
gulpfile.js
Normal 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());
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue