mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
## Summary This PR adds api integration test for Console routes: some were missing on stateful and all are now enabled on serverless.
15 lines
614 B
TypeScript
15 lines
614 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 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import type { FtrProviderContext } from '../ftr_provider_context';
|
|
import { helpers } from '../../api_integration/apis/console/helpers';
|
|
export function ConsoleProvider({ getService }: FtrProviderContext) {
|
|
return {
|
|
helpers: helpers(getService),
|
|
};
|
|
}
|