Skip to content

Commit

Permalink
Merge branch 'devrnt:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
bananazigzags committed Apr 16, 2024
2 parents 73a0e18 + f4746ad commit 55e4ddf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/playground/cypress/e2e/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('provider with events', () => {
cy.get('iframe[name="intercom-messenger-frame"]').then(($iframe) => {
const $body = $iframe.contents().find('body');

cy.wrap($body).contains('Send us a message').click();
cy.wrap($body).contains('Ask a question').click();

cy.wait('@intercomHome');
cy.wait('@intercomConversations');
Expand Down
4 changes: 2 additions & 2 deletions apps/playground/cypress/e2e/show.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('show', () => {
.then(($iframe) => {
const $body = $iframe.contents().find('body');

cy.wrap($body).contains('Send us a message');
cy.wrap($body).contains('Ask a question');
});
});
});
Expand Down Expand Up @@ -60,7 +60,7 @@ describe('showNewMessage', () => {
.then(($iframe) => {
const $body = $iframe.contents().find('body');

cy.wrap($body).contains('Ask us anything, or share your feedback.');
cy.wrap($body).contains('Ask for the team if needed');
cy.wrap($body).find('button[data-testid="go-back"]').should('exist');
});
});
Expand Down

0 comments on commit 55e4ddf

Please sign in to comment.