chore: skip devtunnel test (#2336)

This commit is contained in:
Colin Adler
2022-06-14 20:32:40 -05:00
committed by GitHub
parent 02ad60fd75
commit e9f87f12ec

View File

@ -22,10 +22,14 @@ import (
func TestTunnel(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip()
return
}
// It's not super useful for us to test this constantly, it'll only cause
// flakes is the tunnel becomes unavailable for some reason.
t.Skip()
// if testing.Short() {
// t.Skip()
// return
// }
ctx, cancelTun := context.WithCancel(context.Background())
defer cancelTun()