Increase Windows timeout budget for v2 app-server tests

This commit is contained in:
Dylan Hurd
2026-02-01 20:45:17 -08:00
parent 1173d2ef93
commit 6ac6293460
23 changed files with 69 additions and 0 deletions

View File

@@ -13,6 +13,9 @@ use std::path::Path;
use tempfile::TempDir;
use tokio::time::timeout;
#[cfg(target_os = "windows")]
const DEFAULT_READ_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(25);
#[cfg(not(target_os = "windows"))]
const DEFAULT_READ_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(10);
#[tokio::test]