Skip to content

Commit d7da0ac

Browse files
nfischerariporad
authored andcommitted
chore: test against node v6
1 parent 19df52d commit d7da0ac

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ env:
99
- NODE_VERSION="iojs-v3"
1010
- NODE_VERSION="4"
1111
- NODE_VERSION="5"
12+
- NODE_VERSION="6"
1213

1314
matrix:
1415
allow_failures:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Node.js API. You can use it to eliminate your shell script's dependency on Unix
99
its familiar and powerful commands. You can also install it globally so you can run it from outside
1010
Node projects - say goodbye to those gnarly Bash scripts!
1111

12-
ShellJS supports node `v0.11`, `v0.12`, `v4`, `v5`, and all releases of iojs.
12+
ShellJS supports node `v0.11`, `v0.12`, `v4`, `v5`, `v6`, and all releases of iojs.
1313

1414
The project is [unit-tested](http://travis-ci.org/shelljs/shelljs) and battled-tested in projects like:
1515

test/pwd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ var _pwd = shell.pwd();
2323
assert.equal(_pwd.code, 0);
2424
assert.ok(!_pwd.stderr);
2525
assert.equal(shell.error(), null);
26-
assert.equal(path.basename(_pwd), 'tmp');
26+
assert.equal(path.basename(_pwd.toString()), 'tmp');
2727

2828
shell.exit(123);

0 commit comments

Comments
 (0)