From 116aa1f6bbcaa010fdc227df4cde3b39c5d07153 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 24 Dec 2021 13:35:18 +0100 Subject: Put JSON support behind a flag --- src/Test/Hspec/GraphQL.hs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/Test/Hspec') diff --git a/src/Test/Hspec/GraphQL.hs b/src/Test/Hspec/GraphQL.hs index 253b366..5d812bf 100644 --- a/src/Test/Hspec/GraphQL.hs +++ b/src/Test/Hspec/GraphQL.hs @@ -2,6 +2,9 @@ v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. -} +{-# LANGUAGE CPP #-} + +#ifdef WITH_JSON {-# LANGUAGE ExplicitForAll #-} {-# LANGUAGE OverloadedStrings #-} @@ -39,3 +42,8 @@ shouldResolve executor query = do response `shouldNotSatisfy` HashMap.member "errors" _ -> expectationFailure "the query is expected to resolve to a value, but it resolved to an event stream" +#else +module Test.Hspec.GraphQL + ( + ) where +#endif -- cgit v1.2.3