mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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:
|
script:
|
||||||
- npm run lint
|
- npm run lint
|
||||||
- gulp minify
|
- gulp minify
|
||||||
- gulp test:browser
|
- gulp test
|
||||||
- gulp test:node
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ var gulp = require('gulp'),
|
||||||
node_qunit = require('qunit'),
|
node_qunit = require('qunit'),
|
||||||
gutil = require('gulp-util');
|
gutil = require('gulp-util');
|
||||||
|
|
||||||
gulp.task('test', ['test:browser']);
|
gulp.task('test', ['test:browser', 'test:node']);
|
||||||
|
|
||||||
gulp.task('test:browser', ['minify:acorn'], function() {
|
gulp.task('test:browser', ['minify:acorn'], function() {
|
||||||
return gulp.src('test/index.html')
|
return gulp.src('test/index.html')
|
||||||
|
|
Loading…
Reference in a new issue