From 94f35087b0909c49b9b4c709673b105df22bf5cc Mon Sep 17 00:00:00 2001 From: Mikhail Shustov Date: Tue, 17 Aug 2021 16:29:02 +0300 Subject: [PATCH] fix another conflict in test file (#108905) --- .../kbn-es-query/src/kuery/functions/geo_bounding_box.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/kbn-es-query/src/kuery/functions/geo_bounding_box.test.ts b/packages/kbn-es-query/src/kuery/functions/geo_bounding_box.test.ts index cfa496fb5a2a0..45e6474b22986 100644 --- a/packages/kbn-es-query/src/kuery/functions/geo_bounding_box.test.ts +++ b/packages/kbn-es-query/src/kuery/functions/geo_bounding_box.test.ts @@ -108,6 +108,7 @@ describe('kuery functions', () => { const node = nodeTypes.function.buildNode('geoBoundingBox', 'geo', params); const result = geoBoundingBox.toElasticsearchQuery(node, indexPattern); + // @ts-expect-error @elastic/elasticsearch doesn't support ignore_unmapped in QueryDslGeoBoundingBoxQuery expect(result.geo_bounding_box!.ignore_unmapped).toBe(true); });