From d0986c2eeecddd1f8319dcd3c2e886f3c28713c0 Mon Sep 17 00:00:00 2001 From: James Gowdy Date: Wed, 7 Jul 2021 09:00:38 +0100 Subject: [PATCH] [ML] Removing broken data recognizer test (#104387) --- x-pack/test/functional/apps/ml/permissions/full_ml_access.ts | 3 --- x-pack/test/functional/apps/ml/permissions/index.ts | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/x-pack/test/functional/apps/ml/permissions/full_ml_access.ts b/x-pack/test/functional/apps/ml/permissions/full_ml_access.ts index 10b57de911a1..86cdc84f86d7 100644 --- a/x-pack/test/functional/apps/ml/permissions/full_ml_access.ts +++ b/x-pack/test/functional/apps/ml/permissions/full_ml_access.ts @@ -94,8 +94,6 @@ export default function ({ getService }: FtrProviderContext) { const ecIndexPattern = 'ft_module_sample_ecommerce'; const ecExpectedTotalCount = '287'; - const ecExpectedModuleId = 'sample_data_ecommerce'; - const uploadFilePath = path.join( __dirname, '..', @@ -367,7 +365,6 @@ export default function ({ getService }: FtrProviderContext) { await ml.testExecution.logTestStep('should display job cards'); await ml.dataVisualizerIndexBased.assertCreateAdvancedJobCardExists(); - await ml.dataVisualizerIndexBased.assertRecognizerCardExists(ecExpectedModuleId); await ml.dataVisualizerIndexBased.assertCreateDataFrameAnalyticsCardExists(); }); diff --git a/x-pack/test/functional/apps/ml/permissions/index.ts b/x-pack/test/functional/apps/ml/permissions/index.ts index af9f8a5f240d..e777f241eaf8 100644 --- a/x-pack/test/functional/apps/ml/permissions/index.ts +++ b/x-pack/test/functional/apps/ml/permissions/index.ts @@ -8,8 +8,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ loadTestFile }: FtrProviderContext) { - // FLAKY: https://github.com/elastic/kibana/issues/104042 - describe.skip('permissions', function () { + describe('permissions', function () { this.tags(['skipFirefox']); loadTestFile(require.resolve('./full_ml_access'));