Skip to content

Commit d233331

Browse files
authored
Merge pull request #432 from ljharb/fix_tests
Fix tests
2 parents cfc3c33 + ec96ef2 commit d233331

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: node_js
22
node_js:
3+
- "10"
4+
- "9"
35
- "8"
46
- "7"
57
- "6"
@@ -27,5 +29,6 @@ matrix:
2729
- node_js: "node"
2830
env: LINT=true TEST=false
2931
allow_failures:
32+
- node_js: "9"
3033
- node_js: "7"
3134
- node_js: "5"

package.json

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,23 @@
3131
},
3232
"devDependencies": {
3333
"babel-cli": "^6.26.0",
34-
"babel-core": "^6.26.0",
35-
"babel-eslint": "^8.2.1",
36-
"babel-jest": "^22.2.2",
34+
"babel-core": "^6.26.3",
35+
"babel-eslint": "^8.2.3",
36+
"babel-jest": "^21.2.0",
3737
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
3838
"babel-plugin-transform-flow-strip-types": "^6.22.0",
3939
"babel-plugin-transform-object-rest-spread": "^6.26.0",
4040
"babel-polyfill": "^6.26.0",
4141
"babel-preset-es2015": "^6.24.1",
42-
"coveralls": "^3.0.0",
43-
"eslint": "^4.18.0",
42+
"coveralls": "^3.0.1",
43+
"eslint": "^4.19.1",
4444
"eslint-config-airbnb-base": "^12.1.0",
45-
"eslint-plugin-flowtype": "^2.44.0",
46-
"eslint-plugin-import": "^2.8.0",
47-
"expect": "^22.3.0",
45+
"eslint-plugin-flowtype": "^2.46.3",
46+
"eslint-plugin-import": "^2.12.0",
47+
"expect": "^21.2.1",
4848
"flow-bin": "^0.66.0",
4949
"in-publish": "^2.0.0",
50-
"jest": "^22.3.0",
50+
"jest": "^21.2.1",
5151
"jscodeshift": "^0.4.0",
5252
"minimist": "^1.2.0",
5353
"object.assign": "^4.1.0",
@@ -85,5 +85,11 @@
8585
"<rootDir>/__tests__/__util__"
8686
],
8787
"testEnvironment": "node"
88+
},
89+
"greenkeeper": {
90+
"ignore": [
91+
"jest",
92+
"babel-jest"
93+
]
8894
}
8995
}

0 commit comments

Comments
 (0)