From 087dafed31e52be1c4f2459779c0623b316e5c7e Mon Sep 17 00:00:00 2001 From: Alexi Doak <109488926+doakalexi@users.noreply.github.com> Date: Thu, 7 Dec 2023 07:10:42 -0800 Subject: [PATCH] [ResponseOps] Fix for flaky test - Actions migrations "before all" hook for "7.10.0 migrates the casesConfiguration to be the incidentConfiguration in config, then 7.11.0 removes incidentConfiguration" (#172733) Resolves https://github.com/elastic/kibana/issues/169159 ## Summary I only removed the skip bc the flaky test runner passed after 500+ runs. https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4231 x 50 https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4232 x 250 https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4234 x 250 (cherry picked from commit 08386bf35ee1575ac37eb0c374c0f9752bef8ea5) --- .../spaces_only/tests/actions/migrations.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/test/alerting_api_integration/spaces_only/tests/actions/migrations.ts b/x-pack/test/alerting_api_integration/spaces_only/tests/actions/migrations.ts index 4c555aba0e2dc..4f23a5ff3a727 100644 --- a/x-pack/test/alerting_api_integration/spaces_only/tests/actions/migrations.ts +++ b/x-pack/test/alerting_api_integration/spaces_only/tests/actions/migrations.ts @@ -15,8 +15,7 @@ export default function createGetTests({ getService }: FtrProviderContext) { const supertest = getService('supertest'); const esArchiver = getService('esArchiver'); - // FLAKY: https://github.com/elastic/kibana/issues/169159 - describe.skip('migrations', () => { + describe('migrations', () => { before(async () => { await esArchiver.load('x-pack/test/functional/es_archives/actions'); });