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) {
|
||||
t.Parallel()
|
||||
if testing.Short() {
|
||||
|
||||
// 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()
|
||||
return
|
||||
}
|
||||
// if testing.Short() {
|
||||
// t.Skip()
|
||||
// return
|
||||
// }
|
||||
|
||||
ctx, cancelTun := context.WithCancel(context.Background())
|
||||
defer cancelTun()
|
||||
|
Reference in New Issue
Block a user