-
Notifications
You must be signed in to change notification settings - Fork 14.2k
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
fix(cypress): disable flaky tests #22512
Conversation
it('should filter by created by correctly', () => { | ||
xit('should filter by owners by correctly', () => { |
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.
bycatch: copypasta
Ping @codyml and @EugeneTorap . |
1fd84be
to
7797b0d
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.
Those specs pass locally for me now, thanks!
Thanks @codyml! |
5331fbd
to
1d4dc8e
Compare
Codecov Report
@@ Coverage Diff @@
## master #22512 +/- ##
=======================================
Coverage 66.90% 66.90%
=======================================
Files 1851 1851
Lines 70696 70696
Branches 7764 7764
=======================================
Hits 47299 47299
Misses 21375 21375
Partials 2022 2022
Flags with carried forward coverage won't be shown. Click here to find out more. 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
SUMMARY
The recent PR #22302 broke a few tests that were assuming certain examples were created by the admin user. For some reason CI didn't catch this, and gave the PR a green checkmark. Since this is an incorrect assumption (they should not be created/owned by anyone), we need to refactor the tests so that they aren't testing incorrect behavior. Alternatively, we may change how examples are created and assigned owners. In addition, the tests should be made less flaky to ensure they fail correctly.
This is just a hotfix to unblock master branch, but I will follow up with a proper fix later.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION