You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: coderd/devtunnel/tunnel_test.go
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ import (
11
11
"net/http"
12
12
"net/http/httptest"
13
13
"net/url"
14
+
"runtime"
14
15
"strconv"
15
16
"strings"
16
17
"testing"
@@ -33,6 +34,10 @@ import (
33
34
funcTestTunnel(t*testing.T) {
34
35
t.Parallel()
35
36
37
+
ifruntime.GOOS=="windows" {
38
+
t.Skip("these tests are flaky on windows and cause the tests to fail with '(unknown)' and no output, see https://github.com/coder/internal/issues/579")