mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 10:48:38 -05:00
Switch to forked version of gulp-qunit that allows checking for leaked globals.
See https://github.com/jonkemp/gulp-qunit/issues/22
This commit is contained in:
parent
7783ebeed1
commit
5a82a5d4b9
2 changed files with 2 additions and 2 deletions
|
@ -15,5 +15,5 @@ var gulp = require('gulp'),
|
||||||
|
|
||||||
gulp.task('test', function() {
|
gulp.task('test', function() {
|
||||||
return gulp.src('./test/index.html')
|
return gulp.src('./test/index.html')
|
||||||
.pipe(qunit({ timeout: 10 }));
|
.pipe(qunit({ timeout: 20, noGlobals: true }));
|
||||||
});
|
});
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"gulp": "^3.9.0",
|
"gulp": "^3.9.0",
|
||||||
"gulp-qunit": "^1.2.1",
|
"gulp-qunit": "git://github.com/lehni/gulp-qunit.git#459c5603ceac460327a40dc89df6f19c786dc61b",
|
||||||
"jshint": "2.8.x",
|
"jshint": "2.8.x",
|
||||||
"prepro": "~0.9.1",
|
"prepro": "~0.9.1",
|
||||||
"uglify-js": "~2.4.24"
|
"uglify-js": "~2.4.24"
|
||||||
|
|
Loading…
Reference in a new issue