Skip to content

Commit 714f67d

Browse files
committed
drastically increasing timeout
1 parent 625b73c commit 714f67d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/extension.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ suite("Roo Code Extension Test Suite", () => {
149149

150150
test("Should handle prompt and response correctly", async function () {
151151
// @ts-ignore
152-
this.timeout(120000) // Increase timeout for API request
152+
this.timeout(600000) // Increase timeout for API request
153153

154154
const timeout = 60000
155155
const interval = 1000
@@ -225,6 +225,7 @@ suite("Roo Code Extension Test Suite", () => {
225225
// Wait for webview to launch and receive initial state
226226
let startTime = Date.now()
227227
while (Date.now() - startTime < 180000) {
228+
console.log("Webview ready:", webviewReady)
228229
if (webviewReady) {
229230
// Wait an additional second for webview to fully initialize
230231
await new Promise((resolve) => setTimeout(resolve, 1000))

0 commit comments

Comments
 (0)