Files
postgrest/test/Feature/ProxySpec.hs
T
steve-chavez 40b004c9f7 Comment OpenAPI tests that time out
These should be run locally for now.
2019-04-05 19:10:00 -05:00

18 lines
431 B
Haskell

module Feature.ProxySpec where
import Test.Hspec hiding (pendingWith)
import Test.Hspec.Wai
import SpecHelper
import Network.Wai (Application)
import Protolude
spec :: SpecWith Application
spec =
describe "GET / 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")]