-
Notifications
You must be signed in to change notification settings - Fork 33
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
test: improvement management of asynchronous configuration #2817
Conversation
b1f5ade
to
69812df
Compare
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.
I have a single remark about test/config/jest.image.ts, otherwise this looks OK
- disable 'require-await' rule
76548f7
to
2118d74
Compare
♻️ PR Preview 52f7de1 has been successfully destroyed since this PR has been closed. 🤖 By surge-preview |
♻️ PR Preview 52f7de1 has been successfully destroyed since this PR has been closed. 🤖 By surge-preview |
This reverts commit 1377c5c.
Kudos, SonarCloud Quality Gate passed!
|
With the POC PR #2812, I identified instances where asynchronous handling was missing in the tests.
The enabled rules are:
@typescript-eslint/require-await
@typescript-eslint/no-misused-promises
@typescript-eslint/no-floating-promises
@typescript-eslint/require-await
The disabled rules are:
require-await
Covers #2742