browser tests: further increasing timeouts
diff --git a/claudetool/browse/browse_test.go b/claudetool/browse/browse_test.go
index d4c6b1e..024f685 100644
--- a/claudetool/browse/browse_test.go
+++ b/claudetool/browse/browse_test.go
@@ -108,7 +108,7 @@
}
// Create browser tools instance
- ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
tools := NewBrowseTools(ctx)
@@ -154,7 +154,7 @@
}
// Create browser tools instance
- ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
tools := NewBrowseTools(ctx)
@@ -322,7 +322,7 @@
// TestDefaultViewportSize verifies that the browser starts with the correct default viewport size
func TestDefaultViewportSize(t *testing.T) {
- ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
// Skip if CI or headless testing environment
@@ -391,7 +391,7 @@
// TestResizeTool tests the browser resize functionality
func TestResizeTool(t *testing.T) {
- ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
+ ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
// Skip if CI or headless testing environment