From 4ac5661d317581104bc068cd449cf41c2279e199 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Thu, 19 Sep 2024 15:16:28 +0530 Subject: [PATCH] Increase wait time in Home & Help page cypress tests --- tests/cypress/integration/help.cy.js | 2 +- tests/cypress/integration/home.cy.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cypress/integration/help.cy.js b/tests/cypress/integration/help.cy.js index 54c12ca24..bbd2318af 100644 --- a/tests/cypress/integration/help.cy.js +++ b/tests/cypress/integration/help.cy.js @@ -27,7 +27,7 @@ describe( 'Help Page', function () { it( 'Is Accessible', () => { cy.injectAxe(); - cy.wait( 500 ); + cy.wait( 1000 ); cy.checkA11y( '.wppbh-app-body' ); } ); diff --git a/tests/cypress/integration/home.cy.js b/tests/cypress/integration/home.cy.js index 54cf10f97..a13a98bc4 100644 --- a/tests/cypress/integration/home.cy.js +++ b/tests/cypress/integration/home.cy.js @@ -23,7 +23,7 @@ describe( 'Home Page', function () { } ); it( 'Is Accessible', () => { - cy.wait( 500 ); + cy.wait( 1000 ); cy.checkA11y( '.wppbh-app-body' ); } );