Skip to content

Commit 10474f3

Browse files
committed
Fix exhaustiveFacetCountTests
1 parent 1e3784c commit 10474f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/search_tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ describe.each([
416416
})
417417
})
418418

419-
test.skip(`${permission} key: ${method} search with multiple filter`, async () => {
419+
test(`${permission} key: ${method} search with multiple filter`, async () => {
420420
await client
421421
.index(index.uid)
422422
.search(
@@ -431,7 +431,7 @@ describe.each([
431431
expect(response).toHaveProperty('facetsDistribution', {
432432
genre: { romance: 2 },
433433
})
434-
expect(response).toHaveProperty('exhaustiveFacetsCount', true)
434+
expect(response).toHaveProperty('exhaustiveFacetsCount', false)
435435
expect(response).toHaveProperty('exhaustiveNbHits', false)
436436
expect(response).toHaveProperty('hits', expect.any(Array))
437437
expect(response.hits.length).toEqual(2)

0 commit comments

Comments
 (0)