diff --git a/src/app/pages/home/index.js b/src/app/pages/home/index.js index 5b41b28f6..120ff11a8 100644 --- a/src/app/pages/home/index.js +++ b/src/app/pages/home/index.js @@ -5,6 +5,7 @@ import AccountCard from './accountCard'; import HelpCard from './helpCard'; import WelcomeSection from './welcomeSection'; import MyProductSection from './myProductsSection'; +import { WPSolutionsBanner } from '@newfold-labs/wp-module-ecommerce'; const Home = () => { const abTestShowMyProducts = NewfoldRuntime.hasCapability( @@ -15,6 +16,7 @@ const Home = () => { +
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' ); } );