Add saved objects serverless API tests to esGate (#186589)

## Summary

This PR tags the saved_object_management API integration test suite with
`esGate` to include it in the verification checks that run as part of
the Elasticsearch on-merge process.
This commit is contained in:
Robert Oskamp 2024-06-21 12:31:07 +02:00 committed by GitHub
parent 1ef0793245
commit c0eba7c0f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,9 @@
import { FtrProviderContext } from '../../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('saved objects management apis', () => {
describe('saved objects management apis', function () {
this.tags(['esGate']);
loadTestFile(require.resolve('./find'));
loadTestFile(require.resolve('./bulk_get'));
loadTestFile(require.resolve('./bulk_delete'));