diff --git a/test/functional/services/common/browser.ts b/test/functional/services/common/browser.ts index f02af6827de014..fd46e5ac1448b8 100644 --- a/test/functional/services/common/browser.ts +++ b/test/functional/services/common/browser.ts @@ -669,7 +669,7 @@ class BrowserService extends FtrService { * Get the network simulation for chromium browsers if available. * https://www.selenium.dev/selenium/docs/api/javascript/module/selenium-webdriver/chrome_exports_Driver.html#getNetworkConditions * - * @return {Promise} + * @return {Promise} */ public async getNetworkConditions() { if (this.isChromium()) { diff --git a/x-pack/test/functional/apps/discover_log_explorer/columns_selection.ts b/x-pack/test/functional/apps/discover_log_explorer/columns_selection.ts index 7946e60547055d..c1a9aee81758af 100644 --- a/x-pack/test/functional/apps/discover_log_explorer/columns_selection.ts +++ b/x-pack/test/functional/apps/discover_log_explorer/columns_selection.ts @@ -12,7 +12,7 @@ const defaultLogColumns = ['@timestamp', 'message']; export default function ({ getService, getPageObjects }: FtrProviderContext) { const esArchiver = getService('esArchiver'); const retry = getService('retry'); - const PageObjects = getPageObjects(['common', 'discover', 'discoverLogExplorer']); + const PageObjects = getPageObjects(['common', 'discover']); describe('Columns selection initialization and update', () => { before(async () => { diff --git a/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/columns_selection.ts b/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/columns_selection.ts index 62d453ba3a5950..dfba8f72a699d6 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/columns_selection.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/columns_selection.ts @@ -12,7 +12,7 @@ const defaultLogColumns = ['@timestamp', 'message']; export default function ({ getService, getPageObjects }: FtrProviderContext) { const esArchiver = getService('esArchiver'); const retry = getService('retry'); - const PageObjects = getPageObjects(['common', 'discover', 'discoverLogExplorer']); + const PageObjects = getPageObjects(['common', 'discover']); describe('Columns selection initialization and update', () => { before(async () => { diff --git a/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/customization.ts b/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/customization.ts index 08f687b4e0199e..a647293a73145f 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/customization.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/discover_log_explorer/customization.ts @@ -8,7 +8,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ getService, getPageObjects }: FtrProviderContext) { const kibanaServer = getService('kibanaServer'); - const PageObjects = getPageObjects(['common', 'navigationalSearch']); + const PageObjects = getPageObjects(['common']); const testSubjects = getService('testSubjects'); describe('Customizations', () => {