[Logs onboarding] e2e tests for SystemLogs onboarding (#164989)

Relates to https://github.com/elastic/kibana/issues/164022.
This commit is contained in:
Yngrid Coello 2023-09-04 14:53:35 +02:00 committed by GitHub
parent 4f03491333
commit 4b4ba09f25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 935 additions and 23 deletions

View file

@ -119,6 +119,15 @@ const uploadPipeline = (pipelineContent: string | object) => {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/apm_cypress.yml'));
}
if (
(await doAnyChangesMatch([/^x-pack\/plugins\/observability_onboarding/])) ||
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
) {
pipeline.push(
getPipeline('.buildkite/pipelines/pull_request/observability_onboarding_cypress.yml')
);
}
if (
(await doAnyChangesMatch([/^x-pack\/plugins\/profiling/])) ||
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')