Skip to content

Commit

Permalink
fixes Failing ES Promotion: X-Pack API Integration Tests x-pack/test/…
Browse files Browse the repository at this point in the history
…api_integration/apis/maps/get_grid_tile.js
  • Loading branch information
nreese committed Feb 9, 2023
1 parent 5d4c880 commit cfbf086
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions x-pack/test/api_integration/apis/maps/get_grid_tile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ function findFeature(layer, callbackFn) {
export default function ({ getService }) {
const supertest = getService('supertest');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/149068
describe.skip('getGridTile', () => {
describe('getGridTile', () => {
const URL = `/api/maps/mvt/getGridTile/3/2/3.pbf\
?geometryFieldName=geo.coordinates\
&hasLabels=false\
Expand Down Expand Up @@ -152,13 +151,13 @@ export default function ({ getService }) {
// assert feature geometry is hex
expect(gridFeature.loadGeometry()).to.eql([
[
{ x: 111, y: 698 },
{ x: 89, y: 710 },
{ x: 67, y: 696 },
{ x: 67, y: 669 },
{ x: 89, y: 657 },
{ x: 112, y: 672 },
{ x: 111, y: 698 },
{ x: 89, y: 710 },
],
]);
});
Expand Down

0 comments on commit cfbf086

Please sign in to comment.