mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Tests: gulp test
now performs both browser and nod based tests.
This commit is contained in:
parent
e0429f44df
commit
662b974104
2 changed files with 2 additions and 3 deletions
|
@ -18,5 +18,4 @@ addons:
|
|||
script:
|
||||
- npm run lint
|
||||
- gulp minify
|
||||
- gulp test:browser
|
||||
- gulp test:node
|
||||
- gulp test
|
||||
|
|
|
@ -15,7 +15,7 @@ var gulp = require('gulp'),
|
|||
node_qunit = require('qunit'),
|
||||
gutil = require('gulp-util');
|
||||
|
||||
gulp.task('test', ['test:browser']);
|
||||
gulp.task('test', ['test:browser', 'test:node']);
|
||||
|
||||
gulp.task('test:browser', ['minify:acorn'], function() {
|
||||
return gulp.src('test/index.html')
|
||||
|
|
Loading…
Reference in a new issue