mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
chore: skip devtunnel test (#2336)
This commit is contained in:
@ -22,10 +22,14 @@ import (
|
|||||||
|
|
||||||
func TestTunnel(t *testing.T) {
|
func TestTunnel(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
if testing.Short() {
|
|
||||||
t.Skip()
|
// It's not super useful for us to test this constantly, it'll only cause
|
||||||
return
|
// flakes is the tunnel becomes unavailable for some reason.
|
||||||
}
|
t.Skip()
|
||||||
|
// if testing.Short() {
|
||||||
|
// t.Skip()
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
|
||||||
ctx, cancelTun := context.WithCancel(context.Background())
|
ctx, cancelTun := context.WithCancel(context.Background())
|
||||||
defer cancelTun()
|
defer cancelTun()
|
||||||
|
Reference in New Issue
Block a user