Skip to content

Commit 3620246

Browse files
committed
Fix timeout issue in custom-system-prompt test
- Increase timeout from 5000ms to 10000ms for Windows compatibility - Test was timing out on Windows due to slower file system operations
1 parent 3ceb0ff commit 3620246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/prompts/__tests__/custom-system-prompt.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe("File-Based Custom System Prompt", () => {
9696
expect(prompt).toContain("CAPABILITIES")
9797
expect(prompt).toContain("MODES")
9898
expect(prompt).toContain("Test role definition")
99-
})
99+
}, 10000)
100100

101101
it("should use file-based custom system prompt when available", async () => {
102102
// Mock the readFile to return content from a file

0 commit comments

Comments
 (0)