fix(test): increase timeout in duration test to prevent flakiness (#508)

This commit is contained in:
Sisyphus
2026-01-05 20:20:46 +09:00
committed by GitHub
parent e81002ba43
commit 0f890c11c2

View File

@@ -30,7 +30,7 @@ describe("runner", () => {
name: "Test Check",
category: "installation",
check: async () => {
await new Promise((r) => setTimeout(r, 10))
await new Promise((r) => setTimeout(r, 50))
return { name: "Test", status: "pass", message: "OK" }
},
}