Skip to content

Commit

Permalink
[Fix] Upgrade node version in tests (#714)
Browse files Browse the repository at this point in the history
Node 8 is no longer supported. This caused integration tests to fail.
  • Loading branch information
tal-sapan authored Mar 23, 2020
1 parent 829e90f commit 5542c82
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/testdata/mta/node-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test-coverage": "node ./node_modules/gulp/bin/gulp test-coverage"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion integration/testdata/mta_assemble/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"start": "node server.js"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion integration/testdata/mta_demo/node-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test-coverage": "node ./node_modules/gulp/bin/gulp test-coverage"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion integration/testdata/mta_demo/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"start": "node server.js"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion internal/artifacts/testdata/mta/node-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test-coverage": "node ./node_modules/gulp/bin/gulp test-coverage"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion internal/exec/testdata/mta/node-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test-coverage": "node ./node_modules/gulp/bin/gulp test-coverage"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"version": "1.0.0"
}

0 comments on commit 5542c82

Please sign in to comment.