Skip to content

Commit

Permalink
unskip Failing test: X-Pack API Integration Tests.x-pack/test/api_int…
Browse files Browse the repository at this point in the history
…egration/apis/maps/search·ts (elastic#211304)

Closes elastic#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>
  • Loading branch information
nreese and elasticmachine authored Feb 18, 2025
1 parent b6f0cc7 commit a67154c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions x-pack/test/api_integration/apis/maps/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -37,6 +36,7 @@ export default function ({ getService }: FtrProviderContext) {
type: 'geo_point',
},
],
is_partial: false,
values: [],
});
});
Expand Down Expand Up @@ -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']],
});
});
Expand Down

0 comments on commit a67154c

Please sign in to comment.