diff --git a/test/Feature/ProxySpec.hs b/test/Feature/ProxySpec.hs index 2c806c3f1..34a5c2fa8 100644 --- a/test/Feature/ProxySpec.hs +++ b/test/Feature/ProxySpec.hs @@ -1,6 +1,7 @@ module Feature.ProxySpec where -import Test.Hspec +import Test.Hspec hiding (pendingWith) +import Test.Hspec.Wai import SpecHelper @@ -11,5 +12,6 @@ import Protolude spec :: SpecWith Application spec = describe "GET / with proxy" $ - it "returns a valid openapi spec with proxy" $ + it "returns a valid openapi spec with proxy" $ do + pendingWith "Test timing out frequently on CI, please run locally" validateOpenApiResponse [("Accept", "application/openapi+json")] diff --git a/test/Feature/StructureSpec.hs b/test/Feature/StructureSpec.hs index d75c7ff87..2feb4459c 100644 --- a/test/Feature/StructureSpec.hs +++ b/test/Feature/StructureSpec.hs @@ -1,6 +1,6 @@ module Feature.StructureSpec where -import Test.Hspec +import Test.Hspec hiding (pendingWith) import Test.Hspec.Wai import Network.HTTP.Types @@ -21,7 +21,8 @@ spec :: SpecWith Application spec = do describe "OpenAPI" $ do - it "root path returns a valid openapi spec" $ + it "root path returns a valid openapi spec" $ do + pendingWith "Test timing out frequently on CI, please run locally" validateOpenApiResponse [("Accept", "application/openapi+json")] it "should respond to openapi request on none root path with 415" $