Skip to content

Commit 5ded1c0

Browse files
[Maps] Fix EMS test (#81856) (#81869)
1 parent c5d28ef commit 5ded1c0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

x-pack/test/api_integration/apis/maps/proxy_api.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import expect from '@kbn/expect';
99
export default function ({ getService }) {
1010
const supertest = getService('supertest');
1111

12-
// Failing: See https://github.com/elastic/kibana/issues/81844
13-
describe.skip('EMS proxy', () => {
12+
describe('EMS proxy', () => {
1413
it('should correctly rewrite url and format', async () => {
1514
const resp = await supertest
1615
.get(`/api/maps/ems/files/v7.10/manifest`)
@@ -22,7 +21,7 @@ export default function ({ getService }) {
2221
//Check world-layer
2322
const worldLayer = resp.body.layers.find((layer) => layer.layer_id === 'world_countries');
2423
expect(worldLayer.formats.length).to.be.greaterThan(0);
25-
expect(worldLayer.formats[0].type).to.be('geojson');
24+
expect(worldLayer.formats[0].type).to.be('topojson');
2625
expect(worldLayer.formats[0].url).to.be('file?id=world_countries');
2726
});
2827
});

0 commit comments

Comments
 (0)