relax task timeouts: stale timeout 3min→20min, session wait 30s→1min

This commit is contained in:
YeonGyu-Kim
2026-03-17 16:27:00 +09:00
parent 90351e442e
commit b788586caf
5 changed files with 36 additions and 6 deletions
@@ -0,0 +1,17 @@
declare const require: (name: string) => any
const { describe, expect, test } = require("bun:test")
import { DEFAULT_STALE_TIMEOUT_MS } from "./constants"
describe("DEFAULT_STALE_TIMEOUT_MS", () => {
test("uses a 20 minute default", () => {
// #given
const expectedTimeout = 20 * 60 * 1000
// #when
const timeout = DEFAULT_STALE_TIMEOUT_MS
// #then
expect(timeout).toBe(expectedTimeout)
})
})