From 7ecd3a64ec9841ed0bcaac90e1aac6c76529f16d Mon Sep 17 00:00:00 2001 From: SandhyaRavi Date: Tue, 3 Dec 2024 03:18:33 +0530 Subject: [PATCH] feat: Application specific tests for Dex --- apptests/appscenarios/dex_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/apptests/appscenarios/dex_test.go b/apptests/appscenarios/dex_test.go index 98300ddab6..1627412b60 100644 --- a/apptests/appscenarios/dex_test.go +++ b/apptests/appscenarios/dex_test.go @@ -140,10 +140,8 @@ var _ = Describe("Dex Tests", Label("dex"), func() { Context("testing the issuer URL", func() { It("should return a valid response from the DEX server", func() { - // Make a request to the issuer URL resp, err := http.Get("https://dex.kommander.svc.cluster.local:8080/dex") - // Ensure that we got a response without error gomega.Expect(err).NotTo(gomega.HaveOccurred()) gomega.Expect(resp.StatusCode).To(gomega.Equal(http.StatusOK))