We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9934ca commit 0a3da62Copy full SHA for 0a3da62
1 file changed
cypress/support/commands.js
@@ -358,8 +358,8 @@ Cypress.Commands.add('getModal', () => {
358
359
Cypress.Commands.add('getEditor', { prevSubject: 'optional' }, (subject) => {
360
return subject
361
- ? cy.wrap(subject).find('[data-text-el="editor-container"]')
362
- : cy.get('[data-text-el="editor-container"]')
+ ? cy.wrap(subject).find('[data-text-el="editor-container"]', { timeout: 10000 })
+ : cy.get('[data-text-el="editor-container"]', { timeout: 10000 })
363
})
364
365
Cypress.Commands.add('getMenu', { prevSubject: 'optional' }, (subject) => {
0 commit comments