mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 07:56:28 +00:00 
			
		
		
		
	fix the flaky batches test
This commit is contained in:
		| @@ -167,18 +167,17 @@ async fn list_batches_status_filtered() { | ||||
| async fn list_batches_type_filtered() { | ||||
|     let server = Server::new().await; | ||||
|     let index = server.index("test"); | ||||
|     index.create(None).await; | ||||
|     index.wait_task(0).await; | ||||
|     index | ||||
|         .add_documents(serde_json::from_str(include_str!("../assets/test_set.json")).unwrap(), None) | ||||
|         .await; | ||||
|     let (task, _) = index.create(None).await; | ||||
|     index.wait_task(task.uid()).await.succeeded(); | ||||
|     let (task, _) = index.delete().await; | ||||
|     index.wait_task(task.uid()).await.succeeded(); | ||||
|  | ||||
|     let (response, code) = index.filtered_batches(&["indexCreation"], &[], &[]).await; | ||||
|     assert_eq!(code, 200, "{}", response); | ||||
|     assert_eq!(response["results"].as_array().unwrap().len(), 1); | ||||
|  | ||||
|     let (response, code) = | ||||
|         index.filtered_batches(&["indexCreation", "documentAdditionOrUpdate"], &[], &[]).await; | ||||
|         index.filtered_batches(&["indexCreation", "indexDeletion"], &[], &[]).await; | ||||
|     assert_eq!(code, 200, "{}", response); | ||||
|     assert_eq!(response["results"].as_array().unwrap().len(), 2); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user