From ddd75504086fd2c5fa27d97b8ab7ac0b8ca7bcd0 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 31 Mar 2026 20:29:36 -0400 Subject: [PATCH] Increase nextest timeout for fabro-cli integration tests These tests invoke the CLI binary and take longer than unit tests, so flag SLOW at 5s and hard-kill at 20s. Co-Authored-By: Claude Opus 4.6 (1M context) --- .config/nextest.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index 5dc268f80..ba1335d78 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -2,6 +2,10 @@ # Unit tests: flag SLOW after 2s, hard-kill after 4s slow-timeout = { period = "3s", terminate-after = 2 } +[[profile.default.overrides]] +filter = "package(fabro-cli) & kind(test)" +slow-timeout = { period = "5s", terminate-after = 4 } + [profile.e2e] # E2E (ignored) tests: flag SLOW after 10s, hard-kill after 30s slow-timeout = { period = "10s", terminate-after = 3 }