From 42d2443338f6c8a202435eab2bb85d1a070fc513 Mon Sep 17 00:00:00 2001 From: spalger Date: Tue, 5 May 2020 18:55:43 -0700 Subject: [PATCH] skip whole suite blocking snapshots (#65377) --- .../machine_learning/anomaly_detection/single_metric_job.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/test/functional/apps/machine_learning/anomaly_detection/single_metric_job.ts b/x-pack/test/functional/apps/machine_learning/anomaly_detection/single_metric_job.ts index 913b0e71f6a3e..30327e8a422c1 100644 --- a/x-pack/test/functional/apps/machine_learning/anomaly_detection/single_metric_job.ts +++ b/x-pack/test/functional/apps/machine_learning/anomaly_detection/single_metric_job.ts @@ -71,7 +71,8 @@ export default function({ getService }: FtrProviderContext) { const calendarId = `wizard-test-calendar_${Date.now()}`; - describe('single metric', function() { + // Breaking latest ES snapshots: https://github.com/elastic/kibana/issues/65377 + describe.skip('single metric', function() { this.tags(['mlqa']); before(async () => { await esArchiver.loadIfNeeded('ml/farequote'); @@ -325,8 +326,7 @@ export default function({ getService }: FtrProviderContext) { await ml.jobWizardCommon.advanceToValidationSection(); }); - // https://github.com/elastic/kibana/issues/65377 - it.skip('job cloning displays the summary step', async () => { + it('job cloning displays the summary step', async () => { await ml.jobWizardCommon.advanceToSummarySection(); });