kibana/x-pack/test/encrypted_saved_objects_api_integration/services.ts
Dzmitry Lemechko 477d07f7fc
[FTR] move supertestWithoutAuth service to kbn-ftr-common-functional-services (#189613)
## Summary

While working on #188737 I had to move `supertestWithoutAuth` into
`kbn-ftr-common-functional-services` package. This change seems to be
bigger than initially planned.

Moving it to the separate PR with following changes:
- move FTR `SupertestWithoutAuthProvider` service to package
- remove "duplicates" in favour of service from package
- update service type where needed
2024-08-05 04:20:38 -05:00

12 lines
370 B
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 { services as commonServices } from '../common/services';
export const services = {
...commonServices,
};