Skip to content

Commit

Permalink
Extend timeout in fixed.cy.js
Browse files Browse the repository at this point in the history
  • Loading branch information
steinbro committed Nov 20, 2024
1 parent 6287ba0 commit 6ffeadc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/1-basic/fixed.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('Fixed-location view', () => {
// CLick three times to toggle mode on/off/on
// (first time loads tile, second time has data to speak)
cy.get('#btn_near_me').click()
cy.wait(1000) // Allow time to process tile data
cy.wait(5000) // Allow time to process tile data
cy.get('#btn_near_me').click().click()
cy.get('@speak').should('have.been.calledWithMatch', (utterance) => {
return utterance.text === expectedFirstCallout;
Expand Down

0 comments on commit 6ffeadc

Please sign in to comment.