From c651fcf92dfff7a607e6a1cbf816f92eaf0b3eb8 Mon Sep 17 00:00:00 2001 From: Melissa Alvarez Date: Tue, 16 Mar 2021 20:02:00 -0400 Subject: [PATCH] [ML] Data Frame Analytics accessibility tests: fix flaky outlier creation test (#94735) (#94766) * ensure callouts exist before moving to continue button * unskip ml accessibility suite --- x-pack/test/accessibility/apps/ml.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/accessibility/apps/ml.ts b/x-pack/test/accessibility/apps/ml.ts index 4689180c457a5..164c7032d9dd3 100644 --- a/x-pack/test/accessibility/apps/ml.ts +++ b/x-pack/test/accessibility/apps/ml.ts @@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) { const a11y = getService('a11y'); const ml = getService('ml'); - // Failing: See https://github.com/elastic/kibana/issues/94666 - describe.skip('ml', () => { + describe('ml', () => { const esArchiver = getService('esArchiver'); before(async () => { @@ -279,6 +278,7 @@ export default function ({ getService }: FtrProviderContext) { it('data frame analytics create job validation step for outlier job', async () => { await ml.dataFrameAnalyticsCreation.continueToValidationStep(); + await ml.dataFrameAnalyticsCreation.assertValidationCalloutsExists(); await a11y.testAppSnapshot(); });