From 8604dee32ef3a441729179f610eb3dce2e40c5ff Mon Sep 17 00:00:00 2001
From: Anmol Sethi <hi@nhooyr.io>
Date: Mon, 14 Oct 2019 21:31:46 -0400
Subject: [PATCH] Increase TestWASM timeout

---
 conn_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conn_test.go b/conn_test.go
index 83f09db..d03a721 100644
--- a/conn_test.go
+++ b/conn_test.go
@@ -2377,7 +2377,7 @@ func TestWASM(t *testing.T) {
 
 	wsURL := strings.Replace(s.URL, "http", "ws", 1)
 
-	ctx, cancel := context.WithTimeout(context.Background(), time.Second*20)
+	ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
 	defer cancel()
 
 	cmd := exec.CommandContext(ctx, "go", "test", "-exec=wasmbrowsertest", "./...")
-- 
GitLab