-
Notifications
You must be signed in to change notification settings - Fork 37
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
DEV: ensure bulk action is done before checking for result #602
Conversation
Sometimes the target topic can be out of the viewport and this was causing failing specs.
Please merge if you approve |
Were you able to reproduce the flaky failure? According to the capybara docs, the For viewport-related stuff, capybara has |
I had a lot of different failures, but regardless what you say makes sense... Looking at the latest failure on CI: Clearly it should be unassigned here, but it's not. |
nah... try_until_success it not going to make any difference here |
@davidtaylorhq ok I think I know what is going:
When we visit latest sometimes it probably cancels the request given it happens so fast. If we ask to wait for modal to be closed before we visit latest, that should always be good. This is why we could have failure on line 52 or 72 as these are the two lines after visit("/latest") |
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.
🚀
Sometimes the target topic can be out of the viewport and this was causing failing specs.