Skip to content

Commit 9bb2d23

Browse files
committed
Node v12 and bumped dependencies (#832)
* Node v12 * Bumped dependencies * Disable automatic code coverage
1 parent 4099532 commit 9bb2d23

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.ci/test-matrix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
ELASTICSEARCH_VERSION:
3-
- 7.0.0
3+
- 7.0.0
44

55
NODE_JS_VERSION:
6-
- 11
7-
- 10
8-
- 8
6+
- 12
7+
- 10
8+
- 8
99

1010
exclude: ~

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sudo: required
55
language: node_js
66

77
node_js:
8-
- "11"
8+
- "12"
99
- "10"
1010
- "8"
1111

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
],
1818
"scripts": {
1919
"test": "npm run lint && npm run test:unit && npm run test:behavior && npm run test:types",
20-
"test:unit": "tap test/unit/*.test.js -J -t 300",
21-
"test:behavior": "tap test/behavior/*.test.js -J -t 300",
22-
"test:integration": "tap test/integration/index.js -T --harmony --no-esm",
20+
"test:unit": "tap test/unit/*.test.js -t 300 --no-coverage",
21+
"test:behavior": "tap test/behavior/*.test.js -t 300 --no-coverage",
22+
"test:integration": "tap test/integration/index.js -T --harmony --no-esm --no-coverage",
2323
"test:types": "tsc --project ./test/types/tsconfig.json",
2424
"test:coverage": "nyc npm run test:unit && nyc report --reporter=text-lcov > coverage.lcov && codecov",
2525
"lint": "standard",
@@ -36,15 +36,15 @@
3636
"company": "Elasticsearch BV"
3737
},
3838
"devDependencies": {
39-
"@types/node": "^11.13.4",
39+
"@types/node": "^11.13.7",
4040
"codecov": "^3.3.0",
4141
"convert-hrtime": "^3.0.0",
4242
"dedent": "^0.7.0",
4343
"deepmerge": "^3.2.0",
4444
"dezalgo": "^1.0.3",
4545
"js-yaml": "^3.13.1",
4646
"license-checker": "^25.0.1",
47-
"lolex": "^3.1.0",
47+
"lolex": "^4.0.1",
4848
"minimist": "^1.2.0",
4949
"ora": "^3.4.0",
5050
"pretty-hrtime": "^1.0.3",
@@ -55,8 +55,8 @@
5555
"split2": "^3.1.1",
5656
"standard": "^12.0.1",
5757
"stoppable": "^1.1.0",
58-
"tap": "^12.6.1",
59-
"typescript": "^3.4.3",
58+
"tap": "^13.0.1",
59+
"typescript": "^3.4.5",
6060
"workq": "^2.1.0"
6161
},
6262
"dependencies": {

0 commit comments

Comments
 (0)