Skip to content

Commit

Permalink
[ML] Skip advanced wizard categorization test (#50141)
Browse files Browse the repository at this point in the history
  • Loading branch information
pheyos authored Nov 11, 2019
1 parent a72cb85 commit e2d3c87
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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()}`,
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit e2d3c87

Please sign in to comment.