skip flaky suites (#162813)

This commit is contained in:
Tiago Costa 2023-07-31 17:10:42 +01:00
parent 2d17d753ef
commit a1bc199488
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -9,6 +9,7 @@ import { Journey } from '@kbn/journeys';
import { SynthtraceClient } from '../services/synthtrace';
import { generateData } from '../synthtrace_data/apm_data';
// FLAKY: https://github.com/elastic/kibana/issues/162813
export const journey = new Journey({
beforeSteps: async ({ kbnUrl, log, auth, es }) => {
// Install APM Package
@ -34,6 +35,7 @@ export const journey = new Journey({
);
},
ftrConfigPath: 'x-pack/performance/configs/apm_config.ts',
skipped: true
})
.step('Navigate to Service Inventory Page', async ({ page, kbnUrl }) => {
await page.goto(kbnUrl.get(`app/apm/services`));