We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf680cc commit 1de31fbCopy full SHA for 1de31fb
src/indexes.rs
@@ -1964,7 +1964,6 @@ mod tests {
1964
.await?;
1965
1966
let status = index.get_task(task).await?;
1967
- // Meilisearch may take some time to execute the request so we are going to wait till it's completed
1968
let elements = index.get_documents::<serde_json::Value>().await.unwrap();
1969
assert!(matches!(status, Task::Succeeded { .. }));
1970
assert!(elements.results.len() == 2);
@@ -1985,6 +1984,7 @@ mod tests {
1985
1984
1986
let _ = index.get_task(task).await?;
1987
+ // Update via njdson document
1988
let task = index
1989
.update_documents_ndjson(updated_ndjson, Some("id"))
1990
.await?
0 commit comments