From a5c5d07ed01f78f6cc7ad2e82d439bc3007f6fc6 Mon Sep 17 00:00:00 2001 From: Micah Nagel Date: Mon, 30 Aug 2021 11:47:12 -0600 Subject: [PATCH] do this again --- chart/tests/cypress/mattermost-health.spec.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chart/tests/cypress/mattermost-health.spec.js b/chart/tests/cypress/mattermost-health.spec.js index 0bee2af..86d7494 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') }) -- GitLab