From 2adaff8bb06d7895c0393fc842d9ecfaeca59421 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 27 Dec 2023 07:15:24 -0800 Subject: [PATCH] fix(tools): update donate test that doesn't run on PRs for some reason (#52725) --- cypress/e2e/third-party/donate-page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/third-party/donate-page.ts b/cypress/e2e/third-party/donate-page.ts index efc7d7f5459..69d2dffe951 100644 --- a/cypress/e2e/third-party/donate-page.ts +++ b/cypress/e2e/third-party/donate-page.ts @@ -11,7 +11,7 @@ describe('Donate page', () => { }); cy.get("[data-cy='donation-confirmation-button']").click(); cy.contains('We are processing your donation.').should('be.visible'); - cy.contains('Thank you for being a supporter.', { timeout: 10000 }).should( + cy.contains('Thank You for Being a Supporter', { timeout: 10000 }).should( 'be.visible' ); });