Tag deployment agnostic serverless tests with esGate (#195855)

## Summary

This PR adds the `esGate` tag to the serverless tests in the deployment
agnostic test directory. This will make sure these tests are run as part
of the Elasticsearch serverless checks.

Related to #195813 where the deployment agnostic test configs are added
to the pipeline for the Kibana side.
This commit is contained in:
Robert Oskamp 2024-10-11 12:18:50 +02:00 committed by GitHub
parent 57ce3802de
commit d08c2bb743
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 3 deletions

View file

@ -7,7 +7,9 @@
import { DeploymentAgnosticFtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: DeploymentAgnosticFtrProviderContext) {
describe('Serverless Observability - Deployment-agnostic api integration tests', () => {
describe('Serverless Observability - Deployment-agnostic api integration tests', function () {
this.tags(['esGate']);
// load new oblt and platform deployment-agnostic test here
loadTestFile(require.resolve('../../apis/console'));
loadTestFile(require.resolve('../../apis/core'));

View file

@ -7,7 +7,9 @@
import { DeploymentAgnosticFtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: DeploymentAgnosticFtrProviderContext) {
describe('Serverless Search - Deployment-agnostic api integration tests', () => {
describe('Serverless Search - Deployment-agnostic api integration tests', function () {
this.tags(['esGate']);
// load new search and platform deployment-agnostic test here
loadTestFile(require.resolve('../../apis/console'));
loadTestFile(require.resolve('../../apis/core'));

View file

@ -7,7 +7,9 @@
import { DeploymentAgnosticFtrProviderContext } from '../../ftr_provider_context';
export default function ({ loadTestFile }: DeploymentAgnosticFtrProviderContext) {
describe('Serverless Security - Deployment-agnostic api integration tests', () => {
describe('Serverless Security - Deployment-agnostic api integration tests', function () {
this.tags(['esGate']);
// load new security and platform deployment-agnostic test here
loadTestFile(require.resolve('../../apis/console'));
loadTestFile(require.resolve('../../apis/core'));