filepath logging in GH, increase timeout waiting for webview to initialize

This commit is contained in:
ColemanRoo 2025-01-27 13:53:15 -06:00
parent d672da621b
commit 625b73caef
2 changed files with 4 additions and 1 deletions

View file

@ -26,6 +26,9 @@ jobs:
- name: Install dependencies
run: npm run install:all
- name: Working directory
run: ls
- name: Compile TypeScript
run: npm run compile

View file

@ -224,7 +224,7 @@ suite("Roo Code Extension Test Suite", () => {
// Wait for webview to launch and receive initial state
let startTime = Date.now()
while (Date.now() - startTime < timeout) {
while (Date.now() - startTime < 180000) {
if (webviewReady) {
// Wait an additional second for webview to fully initialize
await new Promise((resolve) => setTimeout(resolve, 1000))