chore: test against node v6

This commit is contained in:
Nate Fischer 2016-04-26 21:48:38 -07:00 committed by Ari Porad
parent 19df52df1f
commit d7da0acef7
3 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ env:
- NODE_VERSION="iojs-v3"
- NODE_VERSION="4"
- NODE_VERSION="5"
- NODE_VERSION="6"
matrix:
allow_failures:

View File

@ -9,7 +9,7 @@ Node.js API. You can use it to eliminate your shell script's dependency on Unix
its familiar and powerful commands. You can also install it globally so you can run it from outside
Node projects - say goodbye to those gnarly Bash scripts!
ShellJS supports node `v0.11`, `v0.12`, `v4`, `v5`, and all releases of iojs.
ShellJS supports node `v0.11`, `v0.12`, `v4`, `v5`, `v6`, and all releases of iojs.
The project is [unit-tested](http://travis-ci.org/shelljs/shelljs) and battled-tested in projects like:

View File

@ -23,6 +23,6 @@ var _pwd = shell.pwd();
assert.equal(_pwd.code, 0);
assert.ok(!_pwd.stderr);
assert.equal(shell.error(), null);
assert.equal(path.basename(_pwd), 'tmp');
assert.equal(path.basename(_pwd.toString()), 'tmp');
shell.exit(123);