fix(healthcheck): remove t.Parallel() from healthcheck tests (#7174)

This commit is contained in:
Colin Adler
2023-04-17 15:01:47 -05:00
committed by GitHub
parent 658246d5f2
commit b44e6e6711

View File

@ -21,8 +21,11 @@ import (
"github.com/coder/coder/tailnet"
)
//nolint:tparallel
func TestDERP(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("skipping healthcheck test in short mode, they reach out over the network.")
}
t.Run("OK", func(t *testing.T) {
t.Parallel()