* Update config default; Copy non-defaults * Update .stylish-haskell config version to match pgrst * Apply stylish haskell to all files * CircleCI config * Remove redundant import. What is used from Network.HTTP.Types.Headers is also exported by Network.HTTP.Types. * Grouped imports * Show un-styled files on CircleCI failure * Fix styling imports * Apply adhoc standard correctly
17 lines
431 B
Haskell
17 lines
431 B
Haskell
module Feature.ProxySpec where
|
|
|
|
import Network.Wai (Application)
|
|
import Test.Hspec hiding (pendingWith)
|
|
|
|
import Test.Hspec.Wai
|
|
|
|
import Protolude
|
|
import SpecHelper
|
|
|
|
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")]
|