We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15bf34c commit b890036Copy full SHA for b890036
internal/servicecheck/servicecheck_test.go
@@ -57,6 +57,7 @@ func TestCombined(t *testing.T) {
57
checker.ExtraChecks = map[string]string{
58
"check_not_found": server.URL + "/not-found",
59
"check_ok": server.URL + "/ok",
60
+ "check_ipv6": "https://ipv6.google.com/",
61
}
62
r.NoError(err)
63
r.NotNil(checker)
@@ -67,6 +68,7 @@ func TestCombined(t *testing.T) {
67
68
69
r.Equal(okStr, checker.LastCheckResult[NeighbourhoodState])
70
r.Equal(okStr, checker.LastCheckResult["check_ok"])
71
+ // r.Equal(okStr, checker.LastCheckResult["check_ipv6"]) // gh-action doesn't support IPv6 yet
72
r.Equal("404 Not Found", checker.LastCheckResult["check_not_found"])
73
})
74
0 commit comments