Skip to content

Commit 573a552

Browse files
committed
Review#1: move Saml Tools service to API integrations services as it not needed for functional tests.
1 parent 5e953fa commit 573a552

4 files changed

Lines changed: 3 additions & 21 deletions

File tree

x-pack/test_serverless/api_integration/services/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ import { services as svlSharedServices } from '../../shared/services';
1212

1313
import { SvlCommonApiServiceProvider } from './svl_common_api';
1414
import { AlertingApiProvider } from './alerting_api';
15+
import { SamlToolsProvider } from './saml_tools';
1516

1617
export const services = {
1718
...xpackApiIntegrationServices,
1819
...svlSharedServices,
1920

2021
svlCommonApi: SvlCommonApiServiceProvider,
2122
alertingApi: AlertingApiProvider,
23+
samlTools: SamlToolsProvider,
2224
};
2325

2426
export type InheritedFtrProviderContext = GenericFtrProviderContext<typeof services, {}>;

x-pack/test_serverless/shared/services/saml_tools.ts renamed to x-pack/test_serverless/api_integration/services/saml_tools.ts

File renamed without changes.

x-pack/test_serverless/shared/ftr_provider_context.d.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

x-pack/test_serverless/shared/services/index.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,4 @@
55
* 2.0.
66
*/
77

8-
import { GenericFtrProviderContext } from '@kbn/test';
9-
10-
import { SamlToolsProvider } from './saml_tools';
11-
12-
export const services = {
13-
samlTools: SamlToolsProvider,
14-
};
15-
16-
export type InheritedFtrProviderContext = GenericFtrProviderContext<typeof services, {}>;
8+
export const services = {};

0 commit comments

Comments
 (0)