kibana/test/common/services/console.ts
Yulia Čech a29b0f4573
[Console] Add api integration tests for serverless (#172306)
## Summary

This PR adds api integration test for Console routes: some were missing
on stateful and all are now enabled on serverless.
2023-12-05 10:26:51 +01:00

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),
};
}