From 2a250ea079cffb6cb74ea513b1bded75bf59074e Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 31 Mar 2026 13:12:57 -0400 Subject: [PATCH] tighten slow test limit --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 5dc268f80..0141fa6ce 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,6 +1,6 @@ [profile.default] # Unit tests: flag SLOW after 2s, hard-kill after 4s -slow-timeout = { period = "3s", terminate-after = 2 } +slow-timeout = { period = "2s", terminate-after = 2 } [profile.e2e] # E2E (ignored) tests: flag SLOW after 10s, hard-kill after 30s