File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
x-pack/test/api_integration/apis/maps Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ import expect from '@kbn/expect';
99export 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 } ) ;
You can’t perform that action at this time.
0 commit comments