From f60febfa62d1e1fea8596ad7201f002fca06f9e2 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Sun, 15 Feb 2026 19:43:58 -0800 Subject: [PATCH] chore(ci): reduce default test timeout to 60s (#22212) Co-authored-by: Amp --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index c16b7b3a63..01cb015861 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,6 +1,6 @@ [profile.default] retries = { backoff = "exponential", count = 2, delay = "2s", jitter = true } -slow-timeout = { period = "30s", terminate-after = 4 } +slow-timeout = { period = "30s", terminate-after = 2 } [[profile.default.overrides]] filter = "test(general_state_tests)"