-
Notifications
You must be signed in to change notification settings - Fork 3.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 flakey tests #3227
Merged
Merged
fix flakey tests #3227
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2f4169d
add tests, escapse strings for console
kuceb 0daaaf4
add comment about tests in logger.js
kuceb 09474d1
fix undefined prop bug
kuceb e54bb05
fix broken test
kuceb e9ee0e1
move diff to dependencies
kuceb db7df10
Merge branch 'develop' into issue-3129
kuceb 64200c6
Merge remote-tracking branch 'origin/develop' into issue-3129
kuceb a3cccb8
fix escape function, add more tests, refacter showDiff
kuceb 7cdf4f6
pin diff dependency
kuceb 32c0d75
fix flakey timers_spec
kuceb c383155
fix flakey timers_spec
kuceb f98bad0
fix another flaky tests, seems .should doesn't retry when chained off…
kuceb 80ce5f6
Merge remote-tracking branch 'origin/issue-3129' into flaky-timers_spec
kuceb 74e13bc
timers_spec fix update, comment
kuceb e48d701
timers_spec fix update, comment
kuceb 20b59c6
Revert "Merge remote-tracking branch 'origin/issue-3129' into flaky-t…
kuceb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 just thought of a better approach here...
Instead of hoping the webserver sends us back the response in 500ms, we could instead use cypress events to wait for the
window:unload
event, gauranteeing this has happened.At that point we could then set the
setTimeout
and then assert its not called after waiting.