From 658e25d2a689ee5109ff11aa8099134adc23b771 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Wed, 11 Sep 2024 20:30:07 +0530 Subject: [PATCH 1/3] Import WP Solutions Banner on Home page --- src/app/pages/home/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/pages/home/index.js b/src/app/pages/home/index.js index bd7f2254c..0b1a23c20 100644 --- a/src/app/pages/home/index.js +++ b/src/app/pages/home/index.js @@ -3,12 +3,14 @@ import WebinarsBanner from 'App/components/webinars-banner'; import AccountCard from './accountCard'; import HelpCard from './helpCard'; import WelcomeSection from './welcomeSection'; +import { WPSolutionsBanner } from '@newfold-labs/wp-module-ecommerce' const Home = () => { return ( +
From abba1e41a109a5cc39110b05bcce5324216b2257 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Wed, 11 Sep 2024 20:43:48 +0530 Subject: [PATCH 2/3] ESLint fix --- src/app/pages/home/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/home/index.js b/src/app/pages/home/index.js index 0b1a23c20..ada303571 100644 --- a/src/app/pages/home/index.js +++ b/src/app/pages/home/index.js @@ -3,7 +3,7 @@ import WebinarsBanner from 'App/components/webinars-banner'; import AccountCard from './accountCard'; import HelpCard from './helpCard'; import WelcomeSection from './welcomeSection'; -import { WPSolutionsBanner } from '@newfold-labs/wp-module-ecommerce' +import { WPSolutionsBanner } from '@newfold-labs/wp-module-ecommerce'; const Home = () => { return ( From 4ac5661d317581104bc068cd449cf41c2279e199 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Thu, 19 Sep 2024 15:16:28 +0530 Subject: [PATCH 3/3] 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' ); } );