diff --git a/tests/cypress/integration/2-general-onboarding-flow/get-started-welcome.cy.js b/tests/cypress/integration/2-general-onboarding-flow/get-started-welcome.cy.js index c07993ab1..3d569ec7d 100644 --- a/tests/cypress/integration/2-general-onboarding-flow/get-started-welcome.cy.js +++ b/tests/cypress/integration/2-general-onboarding-flow/get-started-welcome.cy.js @@ -84,8 +84,8 @@ describe( 'Get Started Welcome Page', function () { GetPluginName(); } ); - it( 'Check navigation back is visible', () => { - cy.get( '.navigation-buttons_back' ).should('exist'); + it( 'Check navigation back is not visible', () => { + cy.get( '.navigation-buttons_back' ).should('not.exist'); } ); it( 'Check if next step loads on clicking navigation next', () => { diff --git a/tests/cypress/integration/3-ecommerce-onboarding-flow/get-started-welcome.cy.js b/tests/cypress/integration/3-ecommerce-onboarding-flow/get-started-welcome.cy.js index 6f24fc950..0752c9380 100644 --- a/tests/cypress/integration/3-ecommerce-onboarding-flow/get-started-welcome.cy.js +++ b/tests/cypress/integration/3-ecommerce-onboarding-flow/get-started-welcome.cy.js @@ -83,8 +83,8 @@ describe( 'Get Started Welcome Page', function () { GetPluginName(); } ); - it( 'Check navigation back is visible', () => { - cy.get( '.navigation-buttons_back' ).should( 'exist' ); + it( 'Check navigation back is not visible', () => { + cy.get( '.navigation-buttons_back' ).should( 'not.exist' ); } ); it( 'Check if next step loads on clicking navigation next', () => {