fix: stabilize windows test timeouts

This commit is contained in:
Peter Steinberger
2026-01-19 12:35:58 +00:00
parent 9e06d945a2
commit ba2514fc4c
4 changed files with 6 additions and 5 deletions

View File

@@ -49,7 +49,7 @@ function parseSseDataLines(text: string): string[] {
}
describe("OpenAI-compatible HTTP API (e2e)", () => {
it("is disabled by default (requires config)", async () => {
it("is disabled by default (requires config)", { timeout: 120_000 }, async () => {
const port = await getFreePort();
const server = await startServerWithDefaultConfig(port);
try {