[ML] Functional tests - reenable DFA feature importance suite (#100850)

This PR re-enables the data frame analytics feature importance test suite.
This commit is contained in:
Robert Oskamp 2021-05-31 09:29:37 +02:00 committed by GitHub
parent 418a3d312c
commit 3ef24aa56c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,8 +14,7 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');
// FLAKY: https://github.com/elastic/kibana/issues/93188
describe.skip('total feature importance panel and decision path popover', function () {
describe('total feature importance panel and decision path popover', function () {
const testDataList: Array<{
suiteTitle: string;
archive: string;
@ -189,6 +188,7 @@ export default function ({ getService }: FtrProviderContext) {
await ml.navigation.navigateToMl();
await ml.navigation.navigateToDataFrameAnalytics();
await ml.dataFrameAnalyticsTable.waitForAnalyticsToLoad();
await ml.testResources.createIndexPatternIfNeeded(testData.job.dest!.index as string);
await ml.dataFrameAnalyticsTable.openResultsView(testData.job.id as string);
});