kibana/x-pack/test_serverless/functional/services/index.ts
José Luis González 5e69fd1498
[Search] Fixing connectors flaky FTR (#203520)
## Summary

Fixing flaky test when choosing a connector with the new EuiComboBox
component.

https://github.com/elastic/kibana/issues/203462

---------

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2024-12-12 18:57:01 +01:00

41 lines
1.9 KiB
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { ComboBoxService } from '@kbn/test-suites-src/functional/services/combo_box';
import { services as deploymentAgnosticFunctionalServices } from './deployment_agnostic_services';
import { services as svlSharedServices } from '../../shared/services';
import { SvlCommonNavigationServiceProvider } from './svl_common_navigation';
import { SvlObltNavigationServiceProvider } from './svl_oblt_navigation';
import { SvlSearchNavigationServiceProvider } from './svl_search_navigation';
import { SvlSecNavigationServiceProvider } from './svl_sec_navigation';
import { SvlCommonScreenshotsProvider } from './svl_common_screenshots';
import { SvlCasesServiceProvider } from '../../api_integration/services/svl_cases';
import { MachineLearningProvider } from './ml';
import { LogsSynthtraceProvider } from './log';
import { UISettingsServiceProvider } from './ui_settings';
import { services as SvlApiIntegrationSvcs } from '../../api_integration/services';
export const services = {
// deployment agnostic FTR services
...deploymentAgnosticFunctionalServices,
// serverless FTR services
...svlSharedServices,
svlCommonNavigation: SvlCommonNavigationServiceProvider,
svlObltNavigation: SvlObltNavigationServiceProvider,
svlSearchNavigation: SvlSearchNavigationServiceProvider,
svlSecNavigation: SvlSecNavigationServiceProvider,
svlCommonScreenshots: SvlCommonScreenshotsProvider,
svlCases: SvlCasesServiceProvider,
svlMl: MachineLearningProvider,
uiSettings: UISettingsServiceProvider,
// log services
svlLogsSynthtraceClient: LogsSynthtraceProvider,
alertingApi: SvlApiIntegrationSvcs.alertingApi,
// EUI components
comboBox: ComboBoxService,
};