Skip to content

Commit

Permalink
Skip unnecessary test
Browse files Browse the repository at this point in the history
  • Loading branch information
yenienserrano committed Feb 9, 2024
1 parent 6b0629a commit a36042a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/functional/apps/home/_home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a36042a

Please sign in to comment.