-
Notifications
You must be signed in to change notification settings - Fork 13.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump a set of test-related JS libs #8051
Conversation
40f0ba3
to
647fec2
Compare
@@ -27,7 +27,6 @@ repos: | |||
- id: trailing-whitespace | |||
- id: end-of-file-fixer | |||
- id: check-docstring-first | |||
- id: check-json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was giving me trouble with he .babelrc
changes...
@@ -17,6 +17,8 @@ | |||
* under the License. | |||
*/ | |||
{ | |||
"sourceMaps": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These 2 lines are the actual fix.
@@ -17,7 +17,8 @@ | |||
* under the License. | |||
*/ | |||
/* eslint no-native-reassign: 0 */ | |||
import '@babel/polyfill'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This got deprecated in favor of the new approach described here https://www.npmjs.com/package/@babel/polyfill
Codecov Report
@@ Coverage Diff @@
## master #8051 +/- ##
==========================================
- Coverage 65.56% 65.41% -0.15%
==========================================
Files 469 469
Lines 22480 22485 +5
Branches 2442 2446 +4
==========================================
- Hits 14739 14709 -30
- Misses 7621 7656 +35
Partials 120 120
Continue to review full report at Codecov.
|
cfa33de
to
16981fc
Compare
@kristw , adjusted to |
Mostly upgrading jest as I was trying to tackle issues related to wrong source-maps reporting in jest. This addresses it
45dc7bb
to
8bac666
Compare
CATEGORY
Choose one
SUMMARY
Mostly upgrading jest as I was trying to tackle issues related to
wrong source-maps reporting in jest. The entrance to the rabbit hole is here: jestjs/jest#5446