mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
This PR re-enables some data frame analytics test suites.
(cherry picked from commit d3db6e7280
)
# Conflicts:
# x-pack/test/functional/apps/ml/data_frame_analytics/cloning.ts
This commit is contained in:
parent
9da30023bb
commit
abdb1d6b55
4 changed files with 7 additions and 14 deletions
|
@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
const ml = getService('ml');
|
||||
const editedDescription = 'Edited description';
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/142102
|
||||
describe.skip('classification creation', function () {
|
||||
describe('classification creation', function () {
|
||||
before(async () => {
|
||||
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/bm_classification');
|
||||
await ml.testResources.createIndexPatternIfNeeded('ft_bank_marketing', '@timestamp');
|
||||
|
@ -93,8 +92,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
},
|
||||
];
|
||||
for (const testData of testDataList) {
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/142102
|
||||
describe.skip(`${testData.suiteTitle}`, function () {
|
||||
describe(`${testData.suiteTitle}`, function () {
|
||||
after(async () => {
|
||||
await ml.api.deleteIndices(testData.destinationIndex);
|
||||
await ml.testResources.deleteIndexPatternByTitle(testData.destinationIndex);
|
||||
|
|
|
@ -15,8 +15,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
const esArchiver = getService('esArchiver');
|
||||
const ml = getService('ml');
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/142118
|
||||
describe.skip('jobs cloning supported by UI form', function () {
|
||||
describe('jobs cloning supported by UI form', function () {
|
||||
const testDataList: Array<{
|
||||
suiteTitle: string;
|
||||
archive: string;
|
||||
|
|
|
@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
const ml = getService('ml');
|
||||
const editedDescription = 'Edited description';
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/142083
|
||||
describe.skip('outlier detection creation', function () {
|
||||
describe('outlier detection creation', function () {
|
||||
before(async () => {
|
||||
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/ihp_outlier');
|
||||
await ml.testResources.createIndexPatternIfNeeded('ft_ihp_outlier', '@timestamp');
|
||||
|
@ -109,8 +108,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
];
|
||||
|
||||
for (const testData of testDataList) {
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/142083
|
||||
describe.skip(`${testData.suiteTitle}`, function () {
|
||||
describe(`${testData.suiteTitle}`, function () {
|
||||
after(async () => {
|
||||
await ml.api.deleteIndices(testData.destinationIndex);
|
||||
await ml.testResources.deleteIndexPatternByTitle(testData.destinationIndex);
|
||||
|
|
|
@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
const ml = getService('ml');
|
||||
const editedDescription = 'Edited description';
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/142095
|
||||
describe.skip('regression creation', function () {
|
||||
describe('regression creation', function () {
|
||||
before(async () => {
|
||||
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/egs_regression');
|
||||
await ml.testResources.createIndexPatternIfNeeded('ft_egs_regression', '@timestamp');
|
||||
|
@ -87,8 +86,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
];
|
||||
|
||||
for (const testData of testDataList) {
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/142095
|
||||
describe.skip(`${testData.suiteTitle}`, function () {
|
||||
describe(`${testData.suiteTitle}`, function () {
|
||||
after(async () => {
|
||||
await ml.api.deleteIndices(testData.destinationIndex);
|
||||
await ml.testResources.deleteIndexPatternByTitle(testData.destinationIndex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue