[ML] Skip advanced wizard categorization test (#50141)

This commit is contained in:
Robert Oskamp 2019-11-11 09:33:20 -05:00 committed by GitHub
parent a72cb8589b
commit e2d3c87269
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,6 +206,8 @@ export default function({ getService }: FtrProviderContext) {
},
},
{
// TODO: fix and re-enable the categorization test as soon as Kibana and ES are in sync again
skipTest: true,
suiteTitle: 'with categorization detector and default datafeed settings',
jobSource: 'ecommerce',
jobId: `ec_advanced_2_${Date.now()}`,
@ -285,7 +287,9 @@ export default function({ getService }: FtrProviderContext) {
await ml.api.cleanMlIndices();
});
for (const testData of testDataList) {
for (const testData of testDataList.filter(td => {
return td.skipTest !== true;
})) {
describe(`${testData.suiteTitle}`, function() {
it('job creation loads the job management page', async () => {
await ml.navigation.navigateToMl();