Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
Remove unsupported node versions
  • Loading branch information
jhnns committed Nov 11, 2017
1 parent b6cc407 commit be35370
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,10 +1,9 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
- "8"
- "9"

script:
- npm test
Expand Down
6 changes: 3 additions & 3 deletions testLib/constModule.js
@@ -1,13 +1,13 @@
const someOtherModule = require("./someOtherModule");
const language = "nl";

module.exports.getLang = () => {
exports.getLang = () => {
return language;
}
};

exports.getOtherModuleName = () => {
return someOtherModule.name;
}
};

exports.filename = __filename;
exports.dirname = __dirname;

0 comments on commit be35370

Please sign in to comment.