We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b26759b commit e83efeaCopy full SHA for e83efea
apps/playground/cypress/e2e/visitorId.ts
@@ -22,11 +22,8 @@ describe('getVisitorId', () => {
22
cy.get('[data-cy=boot]').click();
23
cy.wait('@intercomPing');
24
25
- // FIXME: something goes wrong here in the pipeline
26
- cy.get('button[data-cy="visitorId"]').click({ timeout: 10000 });
+ cy.get('button[data-cy="visitorId"]').click();
27
28
- cy.wait(10000);
29
-
30
- cy.get('p[data-cy="visitorIdValue"]', { timeout: 10000 }).should('exist');
+ cy.get('p[data-cy="visitorIdValue"]').should('exist');
31
});
32
0 commit comments