Skip to content

Commit

Permalink
skip network resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
ainghazal committed Jul 31, 2024
1 parent 922ded0 commit d07741a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/experiment/openvpn/targets_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ import (
)

func Test_resolveTarget(t *testing.T) {
// TODO: mustHaveExternalNetwork() equivalent.
if testing.Short() {
t.Skip("skip test in short mode")
}

_, err := resolveTarget("google.com")
if err != nil {
t.Fatal("should be able to resolve the target")
Expand Down

0 comments on commit d07741a

Please sign in to comment.