mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Increase the timeout for spell-check tests (#21385)
GitOrigin-RevId: 31013f9663a0464cfd22f32164e22f8d45e4c0d9
This commit is contained in:
parent
f822161b14
commit
5c8daedf72
1 changed files with 3 additions and 1 deletions
|
@ -152,7 +152,9 @@ forEach(Object.keys(suggestions)).describe(
|
||||||
const [from, to] = suggestions[spellCheckLanguage]
|
const [from, to] = suggestions[spellCheckLanguage]
|
||||||
|
|
||||||
cy.get('@line').type(`${from} ${to}`)
|
cy.get('@line').type(`${from} ${to}`)
|
||||||
cy.get('@line').get('.ol-cm-spelling-error').should('have.length', 1)
|
cy.get('@line')
|
||||||
|
.get('.ol-cm-spelling-error', { timeout: 10000 })
|
||||||
|
.should('have.length', 1)
|
||||||
cy.get('@line').get('.ol-cm-spelling-error').should('have.text', from)
|
cy.get('@line').get('.ol-cm-spelling-error').should('have.text', from)
|
||||||
|
|
||||||
cy.get('@line').get('.ol-cm-spelling-error').rightclick()
|
cy.get('@line').get('.ol-cm-spelling-error').rightclick()
|
||||||
|
|
Loading…
Reference in a new issue