mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
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:
parent
b6f0cc7857
commit
a67154c6a7
1 changed files with 3 additions and 2 deletions
|
@ -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']],
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue