Skip to content

Commit

Permalink
Merge branch 'master' into i18n/new_checker_master
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine committed Aug 10, 2020
2 parents 8be9f98 + ce02573 commit c1dabe1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions x-pack/test/functional/apps/dashboard/_async_dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,19 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
'timePicker',
]);

// Flakky: https://github.com/elastic/kibana/issues/65949
describe.skip('sample data dashboard', function describeIndexTests() {
describe('sample data dashboard', function describeIndexTests() {
before(async () => {
await PageObjects.common.sleep(5000);
await PageObjects.common.navigateToUrl('home', '/tutorial_directory/sampleData', {
useActualUrl: true,
});
await PageObjects.header.waitUntilLoadingHasFinished();
await PageObjects.home.addSampleDataSet('flights');
const isInstalled = await PageObjects.home.isSampleDataSetInstalled('flights');
expect(isInstalled).to.be(true);
await retry.tryForTime(10000, async () => {
const isInstalled = await PageObjects.home.isSampleDataSetInstalled('flights');
expect(isInstalled).to.be(true);
});

// add the range of the sample data so we can pick it in the quick pick list
const SAMPLE_DATA_RANGE = `[
{
Expand Down

0 comments on commit c1dabe1

Please sign in to comment.