diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index d4fe1fe52..89e223b8a 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -65,6 +65,10 @@ func TestDNSProviders(t *testing.T) { if provider == nil { return } + if domain == "" { + t.Fatal("NO DOMAIN SET! Exiting!") + } + t.Run(domain, func(t *testing.T) { runTests(t, provider, domain, fails, cfg) }) @@ -255,6 +259,9 @@ func TestDualProviders(t *testing.T) { if p == nil { return } + if domain == "" { + t.Fatal("NO DOMAIN SET! Exiting!") + } dc := getDomainConfigWithNameservers(t, p, domain) // clear everything run := func() {