Skip to content

Commit

Permalink
Remove nested split table functional test.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeelmers committed Jan 15, 2019
1 parent 9e4207b commit f01f3ac
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions test/functional/apps/visualize/_data_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,21 +394,6 @@ export default function ({ getService, getPageObjects }) {
]
]);
});

it.skip('should allow nesting multiple splits', async () => {
// This test can be removed as soon as we remove the nested split table
// feature (https://github.com/elastic/kibana/issues/24560). (7.0)
await PageObjects.visualize.clickData();
await PageObjects.visualize.clickAddBucket();
await PageObjects.visualize.clickBucket('Split Table');
await PageObjects.visualize.selectAggregation('Terms');
await PageObjects.visualize.clickSplitDirection('column');
await PageObjects.visualize.selectField('machine.os.raw');
await PageObjects.visualize.setSize(2);
await PageObjects.visualize.clickGo();
const splitCount = await PageObjects.visualize.countNestedTables();
expect(splitCount).to.be.eql([ 12, 10, 8 ]);
});
});

});
Expand Down

0 comments on commit f01f3ac

Please sign in to comment.