diff --git a/tests/playwright/tests/admin/hello-theme-admin-home.test.ts b/tests/playwright/tests/admin/hello-theme-admin-home.test.ts index c33e71c2..1ef398c1 100644 --- a/tests/playwright/tests/admin/hello-theme-admin-home.test.ts +++ b/tests/playwright/tests/admin/hello-theme-admin-home.test.ts @@ -6,7 +6,8 @@ test.describe( 'Hello Theme Admin Home Page', () => { await page.goto( '/wp-admin/admin.php?page=hello-elementor' ); } ); - test( 'should display Welcome to Hello Theme message and take screenshot', async ( { page } ) => { + // Skipped, because this banner is disabled from the Elementor plugin. + test.skip( 'should display Welcome to Hello Theme message and take screenshot', async ( { page } ) => { const welcomeSection = page.locator( 'text=Go Pro, Go Limitless' ).locator( '..' ).locator( '..' ); await expect.soft( welcomeSection ).toHaveScreenshot( 'welcome-section.png' ); } );