Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
services:
meilisearch:
image: getmeili/meilisearch-enterprise:v1.42
image: getmeili/meilisearch-enterprise:v1.46
env:
MEILI_MASTER_KEY: "masterKey"
MEILI_NO_ANALYTICS: "true"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- ./:/home/package

meilisearch:
image: getmeili/meilisearch-enterprise:v1.42
image: getmeili/meilisearch-enterprise:v1.46
ports:
- "7700:7700"
environment:
Expand Down
15 changes: 15 additions & 0 deletions tests/__snapshots__/facet_search.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ exports[`Test on POST search > Admin key: basic facet value search 1`] = `
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -27,6 +28,7 @@ exports[`Test on POST search > Admin key: facet value search with exhaustive fac
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -40,6 +42,7 @@ exports[`Test on POST search > Admin key: facet value search with filter 1`] = `
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -65,6 +68,7 @@ exports[`Test on POST search > Admin key: facet value search with no facet query
],
"facetQuery": null,
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -78,6 +82,7 @@ exports[`Test on POST search > Admin key: facet value search with search query 1
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -95,6 +100,7 @@ exports[`Test on POST search > Master key: basic facet value search 1`] = `
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -108,6 +114,7 @@ exports[`Test on POST search > Master key: facet value search with exhaustive fa
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -121,6 +128,7 @@ exports[`Test on POST search > Master key: facet value search with filter 1`] =
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -146,6 +154,7 @@ exports[`Test on POST search > Master key: facet value search with no facet quer
],
"facetQuery": null,
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -159,6 +168,7 @@ exports[`Test on POST search > Master key: facet value search with search query
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -176,6 +186,7 @@ exports[`Test on POST search > Search key: basic facet value search 1`] = `
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -189,6 +200,7 @@ exports[`Test on POST search > Search key: facet value search with exhaustive fa
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -202,6 +214,7 @@ exports[`Test on POST search > Search key: facet value search with filter 1`] =
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -227,6 +240,7 @@ exports[`Test on POST search > Search key: facet value search with no facet quer
],
"facetQuery": null,
"processingTimeMs": 0,
"remoteErrors": {},
}
`;

Expand All @@ -240,5 +254,6 @@ exports[`Test on POST search > Search key: facet value search with search query
],
"facetQuery": "a",
"processingTimeMs": 0,
"remoteErrors": {},
}
`;
Loading