Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: node_js

node_js:
- "node"
- 8

install:
- "npm install"

script:
- "gulp test:travis"
- "gulp test:travis"
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ gulp.task('test:mocha.es6', function () {

function runMocha(srcPath) {
return gulp.src(srcPath)
.pipe($.spawnMocha({
ui: 'bdd',
.pipe($.spawnMocha({
ui: 'bdd',
reporter: 'spec',
env: {'NODE_PATH': './.tmp/src'}
}))
Expand Down Expand Up @@ -289,5 +289,5 @@ gulp.task('release', ['default'], function (cb) {
});

gulp.task('test:travis', ['build'], function (cb) {
runSequence('test:sauce', 'test:mocha', 'test:mocha.es6', cb);
runSequence('test:mocha', 'test:mocha.es6', cb);
});