Skip to content

Commit

Permalink
Update jest to 24.1.0
Browse files Browse the repository at this point in the history
To avoid errors with using `async` in the jest tests on v24, this fix was required: jestjs/jest#3126 (comment)
  • Loading branch information
ragesoss committed Mar 6, 2019
1 parent 10fdbf5 commit 44fc89d
Show file tree
Hide file tree
Showing 3 changed files with 411 additions and 675 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"test": {
"plugins": [
"babel-plugin-rewire",
"@babel/plugin-transform-modules-commonjs"
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-transform-runtime"
],
"ignore": [
"i18n/*.js"
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"i18n-js": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"jeet": "^7.2.0",
"jest": "^23.6.0",
"jest": "^24.1.0",
"jquery": "3.3.1",
"jquery-ui": "^1.10.5",
"jquery.repeater": "^1.2.1",
Expand Down Expand Up @@ -165,7 +165,8 @@
"yarn": ">= 1.0.0"
},
"devDependencies": {
"webpack-cli": "^3.2.3"
"webpack-cli": "^3.2.3",
"@babel/plugin-transform-runtime": "^7.3.4"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
Expand Down

0 comments on commit 44fc89d

Please sign in to comment.