Skip to content

Commit dc05375

Browse files
committed
1 parent f4e024f commit dc05375

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: .travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ before_install:
4545
# - use 2.x for Node.js < 0.10
4646
# - use 3.x for Node.js < 4
4747
# - use 5.x for Node.js < 6
48+
# - use 6.x for Node.js < 8
4849
if [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -eq 0 && "$(cut -d. -f2 <<< "$TRAVIS_NODE_VERSION")" -lt 8 ]]; then
4950
npm install --save-dev [email protected]
5051
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -eq 0 && "$(cut -d. -f2 <<< "$TRAVIS_NODE_VERSION")" -lt 10 ]]; then
@@ -53,6 +54,8 @@ before_install:
5354
npm install --save-dev [email protected]
5455
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -lt 6 ]]; then
5556
npm install --save-dev [email protected]
57+
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -lt 8 ]]; then
58+
npm install --save-dev [email protected]
5659
fi
5760
- |
5861
# supertest for http calls

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"eslint-plugin-promise": "4.2.1",
2727
"eslint-plugin-standard": "4.0.1",
2828
"istanbul": "0.4.5",
29-
"mocha": "6.2.2",
29+
"mocha": "7.0.0",
3030
"supertest": "4.0.2"
3131
},
3232
"files": [

0 commit comments

Comments
 (0)