From c3285d35944dac3359899e5d8719a2c7f0e626be Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Fri, 22 Nov 2024 11:07:14 -0700 Subject: [PATCH] search_hits.js --- .../apps/maps/group1/documents_source/search_hits.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); }); });