Skip to content

Commit

Permalink
[maps] unskip flacky shapefile test (#124539)
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese authored Feb 4, 2022
1 parent cd7618e commit 490bcc4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions x-pack/test/functional/apps/maps/file_upload/shapefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ export default function ({ getPageObjects, getService }) {
const security = getService('security');
const retry = getService('retry');

// FLAKY: https://github.com/elastic/kibana/issues/124334
describe.skip('shapefile upload', () => {
describe('shapefile upload', () => {
let indexName = '';
before(async () => {
await security.testUser.setRoles([
Expand All @@ -41,10 +40,14 @@ export default function ({ getPageObjects, getService }) {
const numberOfLayers = await PageObjects.maps.getNumberOfLayers();
expect(numberOfLayers).to.be(2);

// preview text is inconsistent. Skip expect for now
// https://github.com/elastic/kibana/issues/124334
/*
const tooltipText = await PageObjects.maps.getLayerTocTooltipMsg('cb_2018_us_csa_500k');
expect(tooltipText).to.be(
'cb_2018_us_csa_500k\nResults limited to 141 features, 81% of file.'
);
*/
});

it('should import shapefile', async () => {
Expand Down

0 comments on commit 490bcc4

Please sign in to comment.