Skip to content

Commit

Permalink
Unskip data table non timebased test (#71049)
Browse files Browse the repository at this point in the history
* Unskip data table non timebased test

* Fix test to use new label

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
Tim Roes and elasticmachine authored Jul 9, 2020
1 parent c8e6754 commit cfbdf1f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/functional/apps/visualize/_data_table_nontimeindex.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ export default function ({ getService, getPageObjects }) {
expect(data.trim().split('\n')).to.be.eql(['14,004 1,412.6']);
});

// bug https://github.com/elastic/kibana/issues/68977
describe.skip('data table with date histogram', async () => {
describe('data table with date histogram', async () => {
before(async () => {
await PageObjects.visualize.navigateToNewVisualization();
await PageObjects.visualize.clickDataTable();
Expand All @@ -123,7 +122,7 @@ export default function ({ getService, getPageObjects }) {
await PageObjects.visEditor.clickBucket('Split rows');
await PageObjects.visEditor.selectAggregation('Date Histogram');
await PageObjects.visEditor.selectField('@timestamp');
await PageObjects.visEditor.setInterval('Daily');
await PageObjects.visEditor.setInterval('Day');
await PageObjects.visEditor.clickGo();
});

Expand Down

0 comments on commit cfbdf1f

Please sign in to comment.