-
Notifications
You must be signed in to change notification settings - Fork 91
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(test): increase timeout #6203
Conversation
221f4ae
to
c734317
Compare
Test summaryRun details
Failures
Flakiness
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Cloud |
? cy.wrap(subject).find('[data-text-el="editor-container"]') | ||
: cy.get('[data-text-el="editor-container"]') | ||
? cy.wrap(subject).find('[data-text-el="editor-container"]', { timeout: 20000 }) | ||
: cy.get('[data-text-el="editor-container"]', { timeout: 20000 }) |
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.
f7c6714
to
0fa3fb5
Compare
Signed-off-by: Elizabeth Danzberger <[email protected]>
Signed-off-by: Elizabeth Danzberger <[email protected]>
be950ab
to
9dc8634
Compare
New attempt use chrome instead of electron, now downgrading to 114 due to the running out of memory error. If that passes generally we may also want to try to bump cypress and keep chrome pinned for now Next could be the fix from cypress-io/cypress#27415 (comment) |
9dc8634
to
6842d39
Compare
Signed-off-by: Julius Härtl <[email protected]>
6842d39
to
893ab3b
Compare
Let me close this as it seems a timeout is not the problem and my attempts also failed 😢 |
Pull request was closed
Should fix
ImageView.spec.js
. The issue seemed to be that the elements were loading, but too slowly and the Cypress commands timed out. Adding a longer timeout should be reasonable enough.