diff --git a/x-pack/test/functional/apps/maps/group1/documents_source/search_hits.js b/x-pack/test/functional/apps/maps/group1/documents_source/search_hits.js index f9e856d0d0ee4..07bd85ca9e010 100644 --- a/x-pack/test/functional/apps/maps/group1/documents_source/search_hits.js +++ b/x-pack/test/functional/apps/maps/group1/documents_source/search_hits.js @@ -108,15 +108,14 @@ export default function ({ getPageObjects, getService }) { expect(hits).to.equal('2'); }); - // Fails in chrome 128+: https://github.com/elastic/kibana/issues/175378 - it.skip('should apply layer query to fit to bounds', async () => { + it('should apply layer query to fit to bounds', async () => { // Set view to other side of world so no matching results await maps.setView(-15, -100, 6); await maps.clickFitToBounds('logstash'); const { lat, lon, zoom } = await maps.getView(); expect(Math.round(lat)).to.equal(43); expect(Math.round(lon)).to.equal(-102); - expect(Math.round(zoom)).to.equal(5); + expect(Math.round(zoom)).to.equal(4); }); });