-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
chore(deps): Upgrade eslint-config-sentry@1.67.0 #29657
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
chore(deps): Upgrade eslint-config-sentry@1.67.0 #29657
Conversation
tests/js/.eslintrc.js
Outdated
| rules: { | ||
| 'testing-library/render-result-naming-convention': 'off', | ||
| 'testing-library/prefer-screen-queries': 'off', | ||
| }, |
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.
Should these be in eslint-config-sentry?
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.
Unfortunately, they get overridden by this extend if they are there.
We'll be able to get rid of testing-library/prefer-screen-queries line soon, just one more big file to go.
Once we get the extends in overrides feature with the upgraded eslint, we'll be able to delete this whole file.
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.
Actually, I can put them there 👍 Just had the wrong order when I was testing it previously.
| ); | ||
|
|
||
| screen.findByText('mock_AwsLambdaProjectSelect'); | ||
| await screen.findByText('mock_AwsLambdaProjectSelect'); |
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.
Should it be getByText if this didn't need to resolve before?
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.
@evanpurkhiser followed up here: #29790
This includes the addition of eslint-plugin-testing-library (getsentry/eslint-config-sentry#115).