skip flaky suite (#118626)

This commit is contained in:
Tiago Costa 2021-11-25 19:33:12 +00:00
parent c5146db546
commit 91f06d07a2
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -19,7 +19,8 @@ async function removeLogFile() {
await fs.unlink(logFilePath).catch(() => void 0);
}
describe('migration from 7.13 to 7.14+ with many failed action_tasks', () => {
// FLAKY: https://github.com/elastic/kibana/issues/118626
describe.skip('migration from 7.13 to 7.14+ with many failed action_tasks', () => {
let esServer: kbnTestServer.TestElasticsearchUtils;
let root: Root;
let startES: () => Promise<kbnTestServer.TestElasticsearchUtils>;