diff --git a/chart/tests/cypress/mattermost-health.spec.js b/chart/tests/cypress/mattermost-health.spec.js index 0bee2af7297efd56fa79b974867ac71490ffaee6..86d749401fc8d0ffb8d848e3ef758573960aac52 100644 --- a/chart/tests/cypress/mattermost-health.spec.js +++ b/chart/tests/cypress/mattermost-health.spec.js @@ -50,6 +50,9 @@ describe('Mattermost Healthcheck', function() { let randomChat = "Hello " + Math.random().toString(36).substring(8); cy.get('textarea[id="post_textbox"]').type(randomChat).type('{enter}') cy.reload() + // Click between channels to dodge the tutorial if it exists + cy.get('span[class="SidebarChannelLinkLabel"]').contains("Off-Topic").click() + cy.get('span[class="SidebarChannelLinkLabel"]').contains("Town Square").click() cy.get('p').contains(randomChat).should('be.visible') })