From 6bd5aebe331c0f4cd33d2759acf55e567c7d31cf Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Wed, 27 Apr 2022 11:24:57 -0500 Subject: [PATCH] [ML] Functional tests - re-enable trained models tests (#131051) (#131077) This PR re-enables the trained models functional tests. (cherry picked from commit a145dffe87580428ef3901f38d5cec4b41460a8a) Co-authored-by: Robert Oskamp --- x-pack/test/functional/apps/ml/model_management/model_list.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/test/functional/apps/ml/model_management/model_list.ts b/x-pack/test/functional/apps/ml/model_management/model_list.ts index 811ae280e078..08fb3b7124ae 100644 --- a/x-pack/test/functional/apps/ml/model_management/model_list.ts +++ b/x-pack/test/functional/apps/ml/model_management/model_list.ts @@ -10,8 +10,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ getService }: FtrProviderContext) { const ml = getService('ml'); - // Failing: See https://github.com/elastic/kibana/issues/125455 - describe.skip('trained models', function () { + describe('trained models', function () { before(async () => { await ml.trainedModels.createTestTrainedModels('classification', 15, true); await ml.trainedModels.createTestTrainedModels('regression', 15);