add a dump test with batches and enqueued tasks

This commit is contained in:
Tamo 2025-02-04 11:49:11 +01:00
parent fa00b42c93
commit 80198aa855
6 changed files with 220 additions and 0 deletions

View file

@ -163,6 +163,10 @@ impl Server<Owned> {
self.service.get("/tasks").await
}
pub async fn batches(&self) -> (Value, StatusCode) {
self.service.get("/batches").await
}
pub async fn set_features(&self, value: Value) -> (Value, StatusCode) {
self.service.patch("/experimental-features", value).await
}