diff --git a/test/functional/apps/home/_home.ts b/test/functional/apps/home/_home.ts index 28eb76e78053..c75893c86b65 100644 --- a/test/functional/apps/home/_home.ts +++ b/test/functional/apps/home/_home.ts @@ -55,7 +55,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { expect(url.includes('/app/wz-home')).to.be(true); }); - it('clicking on console on homepage should take you to console app', async () => { + // Wazuh: The home page of Wazuh is different from the OpenSearch Dashboards home page + // and the console app is not available on the Wazuh home page + it.skip('clicking on console on homepage should take you to console app', async () => { await PageObjects.home.clickSynopsis('console'); const url = await browser.getCurrentUrl(); expect(url.includes('/app/dev_tools#/console')).to.be(true);