Skip to content

Commit

Permalink
Tag deployment agnostic serverless tests with esGate (elastic#195855)
Browse files Browse the repository at this point in the history
## 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 elastic#195813 where the deployment agnostic test configs are added
to the pipeline for the Kibana side.
  • Loading branch information
pheyos authored Oct 11, 2024
1 parent 57ce380 commit d08c2bb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down

0 comments on commit d08c2bb

Please sign in to comment.