-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Improve test code #7121
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
Improve test code #7121
Conversation
Codecov Report
@@ Coverage Diff @@
## master #7121 +/- ##
==========================================
- Coverage 93.89% 93.88% -0.01%
==========================================
Files 169 169
Lines 12530 12530
==========================================
- Hits 11765 11764 -1
- Misses 765 766 +1
Continue to review full report at Codecov.
|
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.
- There is/was a
rest_create_app
endpoint? 😳 - Changing retry to 1 may also help to identify flaky tests easier.
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.
@erencihangir Did you want to comment? |
🎉 This change has been released in version 5.0.0-beta.1 |
🎉 This change has been released in version 5.0.0 |
New Pull Request Checklist
Issue Description
I noticed that when you write failing tests sometime it fails 5 times which makes it difficult to pin point where to debug.
Also I noticed an extra parse instance getting created from what seems to be an old test file. (Wasted hours on this 😭 )
Related issue: #6644
Approach
Set network retry to 1 (Changed Promise.all to saveAll in Auth.spec.js to reduce load)
Remove strange file.
TODOs before merging