From a67154c6a76ce14aafb13b3e76b8b2bb71ebc310 Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Tue, 18 Feb 2025 10:17:32 -0700 Subject: [PATCH] =?UTF-8?q?unskip=20Failing=20test:=20X-Pack=20API=20Integ?= =?UTF-8?q?ration=20Tests.x-pack/test/api=5Fintegration/apis/maps/search?= =?UTF-8?q?=C2=B7ts=20(#211304)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes https://github.com/elastic/kibana/issues/208138 ES|QL response updated with `is_partial` key. x-pack/test/api_integration/apis/maps/search.ts tests where skipped to unblock ES-snapshot promotion. This PR unskips the tests and updates the expects for the new response shape --------- Co-authored-by: Elastic Machine --- x-pack/test/api_integration/apis/maps/search.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/x-pack/test/api_integration/apis/maps/search.ts b/x-pack/test/api_integration/apis/maps/search.ts index 0984f961e2ca6..26e34c0a1ff5d 100644 --- a/x-pack/test/api_integration/apis/maps/search.ts +++ b/x-pack/test/api_integration/apis/maps/search.ts @@ -14,8 +14,7 @@ import type { FtrProviderContext } from '../../ftr_provider_context'; export default function ({ getService }: FtrProviderContext) { const supertest = getService('supertest'); - // Failing: See https://github.com/elastic/kibana/issues/208138 - describe.skip('search', () => { + describe('search', () => { describe('ES|QL', () => { it(`should return getColumns response in expected shape`, async () => { const resp = await supertest @@ -37,6 +36,7 @@ export default function ({ getService }: FtrProviderContext) { type: 'geo_point', }, ], + is_partial: false, values: [], }); }); @@ -77,6 +77,7 @@ export default function ({ getService }: FtrProviderContext) { type: 'date', }, ], + is_partial: false, values: [['POINT (-120.9871642 38.68407028)', '2015-09-20T00:00:00.000Z']], }); });