Skip to content

Commit b890036

Browse files
committed
test(servicecheck): add ipv6.google.com check
1 parent 15bf34c commit b890036

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

internal/servicecheck/servicecheck_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ func TestCombined(t *testing.T) {
5757
checker.ExtraChecks = map[string]string{
5858
"check_not_found": server.URL + "/not-found",
5959
"check_ok": server.URL + "/ok",
60+
"check_ipv6": "https://ipv6.google.com/",
6061
}
6162
r.NoError(err)
6263
r.NotNil(checker)
@@ -67,6 +68,7 @@ func TestCombined(t *testing.T) {
6768

6869
r.Equal(okStr, checker.LastCheckResult[NeighbourhoodState])
6970
r.Equal(okStr, checker.LastCheckResult["check_ok"])
71+
// r.Equal(okStr, checker.LastCheckResult["check_ipv6"]) // gh-action doesn't support IPv6 yet
7072
r.Equal("404 Not Found", checker.LastCheckResult["check_not_found"])
7173
})
7274
}

0 commit comments

Comments
 (0)