Skip to content

Commit

Permalink
increase timeout on kb creation
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrehault committed Jan 7, 2025
1 parent 9ccd52c commit e7f015e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/1-basic/kb-creation-flow.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('KB creation flow', () => {
cy.get('[formcontrolname="zone"] pa-radio').should('be.visible');
cy.get('[formcontrolname="zone"] pa-radio').contains(zone.title).click();
cy.get('[data-cy="new-kb-save-button"] button').should('be.enabled').click();
cy.get(`[data-cy="${newKbName}-link"]`, { timeout: 10000 }).should('contain', newKbName);
cy.get(`[data-cy="${newKbName}-link"]`, { timeout: 20000 }).should('contain', newKbName);
cy.get(`[data-cy="${newKbName}-link"]`).click();
cy.location('pathname').should('equal', `/at/${ACCOUNT.slug}/${zone.slug}/${newKbName}`);
cy.get('app-kb-switch').should('contain', newKbName);
Expand Down

0 comments on commit e7f015e

Please sign in to comment.