unskip Failing test: X-Pack API Integration Tests.x-pack/test/api_integration/apis/maps/search·ts (#211304)

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 <elasticmachine@users.noreply.github.com>
This commit is contained in:
Nathan Reese 2025-02-18 10:17:32 -07:00 committed by GitHub
parent b6f0cc7857
commit a67154c6a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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']],
});
});