Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[maps] unskip flaky shapefile test #124539

Merged
merged 1 commit into from
Feb 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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