diff --git a/.travis.yml b/.travis.yml index e98ff4e3..2836952f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: node_js node_js: - - 'stable' - '4' sudo: false env: @@ -25,7 +24,7 @@ script: - gulp test install: - | - wget http://sourceforge.net/p/tellmatic/git/ci/master/tree/img/arial.ttf?format=raw -O Arial.ttf + wget http://sourceforge.net/p/tellmatic/git/ci/master/tree/img/arial.ttf?format=raw -O arial.ttf mkdir -p ~/.fonts - mv Arial.ttf ~/.fonts + mv arial.ttf ~/.fonts fc-cache -f -v diff --git a/gulp/tasks/test.js b/gulp/tasks/test.js index 8a23dbd4..b85e970e 100644 --- a/gulp/tasks/test.js +++ b/gulp/tasks/test.js @@ -19,7 +19,7 @@ gulp.task('test', ['test:browser', 'test:node']); gulp.task('test:browser', ['minify:acorn'], function() { return gulp.src('index.html', { cwd: 'test' }) .pipe(qunits({ - noGlobals: true, + checkGlobals: true, timeout: 20 })); }); diff --git a/package.json b/package.json index da4b185e..b31b7d15 100644 --- a/package.json +++ b/package.json @@ -44,9 +44,8 @@ "gulp-cached": "^1.1.0", "gulp-jshint": "^2.0.0", "gulp-prepro": "^2.2.0", - "gulp-qunits": "^1.5.1", + "gulp-qunits": "^2.0.1", "gulp-rename": "^1.2.2", - "gulp-rimraf": "^0.2.0", "gulp-shell": "^0.5.1", "gulp-symlink": "^2.1.3", "gulp-uglify": "^1.5.1",