From 460e233f11cbd906421fa8be8fe87c21c10ddb3a Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Sat, 8 Jun 2024 18:29:30 +0200 Subject: [PATCH] Fix tests --- cypress/e2e/cloud.cy.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cypress/e2e/cloud.cy.ts b/cypress/e2e/cloud.cy.ts index f70c195..7eabe89 100644 --- a/cypress/e2e/cloud.cy.ts +++ b/cypress/e2e/cloud.cy.ts @@ -73,7 +73,7 @@ describe('Cloud', () => { cy.solidLogin(); // Act - cy.see('Your data is only stored locally, do you want to upload it to the cloud?'); + cy.see('All your eggs are in the same basket'); cy.press('Back up'); cy.dontSee('Loading...'); @@ -122,7 +122,7 @@ describe('Cloud', () => { cy.solidLogin(); // Act - cy.see('Your data is only stored locally, do you want to upload it to the cloud?'); + cy.see('All your eggs are in the same basket'); cy.press('Back up'); cy.dontSee('Loading...', { timeout: 30000 }); @@ -151,17 +151,17 @@ describe('Cloud', () => { cy.solidLogin(); // Act - cy.see('Your data is only stored locally, do you want to upload it to the cloud?'); - cy.press('not now'); + cy.see('All your eggs are in the same basket'); + cy.press('not yet'); // Assert - cy.dontSee('Your data is only stored locally, do you want to upload it to the cloud?'); + cy.dontSee('All your eggs are in the same basket'); cy.see('Onboarding task'); cy.ariaLabel('Open account status').click(); cy.see('Your data is not backed up yet'); cy.reload(); - cy.dontSee('Your data is only stored locally, do you want to upload it to the cloud?'); + cy.dontSee('All your eggs are in the same basket'); cy.see('Onboarding task'); });