diff --git a/.config/nextest.toml b/.config/nextest.toml index 5acbb2efd..86e7a7724 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,22 +1,10 @@ [profile.default] # Unit tests: flag SLOW after 5s, hard-kill after 15s -slow-timeout = { period = "5s", terminate-after = 3 } +slow-timeout = { period = "3s", terminate-after = 2 } -[[profile.default.overrides]] -filter = "package(fabro-cli) & kind(test)" -slow-timeout = { period = "5s", terminate-after = 4 } - -[[profile.default.overrides]] -filter = "package(fabro-llm)" -slow-timeout = { period = "10s", terminate-after = 3 } - -[[profile.default.overrides]] -filter = "package(fabro-oauth)" -slow-timeout = { period = "10s", terminate-after = 3 } - -[[profile.default.overrides]] -filter = "package(fabro-tracker)" -slow-timeout = { period = "10s", terminate-after = 3 } + [[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