mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-06-06 20:25:40 +00:00
Provide more information about resulting documents on test case
This commit is contained in:
parent
13b607bd68
commit
1594c54e23
@ -466,10 +466,19 @@ async fn nested_search_on_title_with_prefix_wildcard() {
|
|||||||
// Wildcard should match to 'details.' attribute
|
// Wildcard should match to 'details.' attribute
|
||||||
index
|
index
|
||||||
.search(
|
.search(
|
||||||
json!({"q": "Captain Marvel", "attributesToSearchOn": ["*.title"]}),
|
json!({"q": "Captain Marvel", "attributesToSearchOn": ["*.title"], "attributesToRetrieve": ["id"]}),
|
||||||
|response, code| {
|
|response, code| {
|
||||||
snapshot!(code, @"200 OK");
|
snapshot!(code, @"200 OK");
|
||||||
snapshot!(response["hits"].as_array().unwrap().len(), @"2");
|
snapshot!(json_string!(response["hits"]),
|
||||||
|
@r###"
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"id": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2"
|
||||||
|
}
|
||||||
|
]"###);
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user