Skip to content

Commit 30f5593

Browse files
committed
chore: bump timeout for models tests that need to launch provider
Signed-off-by: Donnie Adams <[email protected]>
1 parent 99836de commit 30f5593

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/gptscript.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe("gptscript module", () => {
5252
expect(model.startsWith("claude-3-")).toBe(true)
5353
expect(model.endsWith("from github.com/gptscript-ai/claude3-anthropic-provider")).toBe(true)
5454
}
55-
})
55+
}, 15000)
5656

5757
test("listModels with default provider returns a list of models from that provider", async () => {
5858
if (!process.env.ANTHROPIC_API_KEY) {
@@ -71,7 +71,7 @@ describe("gptscript module", () => {
7171
} finally {
7272
newg.close()
7373
}
74-
})
74+
}, 15000)
7575

7676
test("version returns a gptscript version", async () => {
7777
// Similar structure to listTools

0 commit comments

Comments
 (0)