Skip to content

Commit 3d9b01d

Browse files
committed
Fix failing Jest CI (#3988)
## Description Currently our CI fail with the following error: ``` ReferenceError: regeneratorRuntime is not defined ``` Based on [this issue comment](jestjs/jest#3126 (comment)) I've updated out `babel.config.js`. This fixed issue locally, so it should also work on CI. ## Test plan Check CI
1 parent e973f43 commit 3d9b01d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/react-native-gesture-handler/babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
presets: [
3-
'@babel/preset-env',
3+
['@babel/preset-env', { targets: { node: 'current' } }],
44
'@babel/preset-typescript',
55
'module:@react-native/babel-preset',
66
],

0 commit comments

Comments
 (0)