graphql-engine/server/tests-hspec/Test/HelloWorldSpec.hs
2022-02-21 17:06:04 +00:00

20 lines
532 B
Haskell

-- | A starting point feature test.
module Test.HelloWorldSpec (spec) where
import Harness.State (State)
import Harness.Test.Context qualified as Context
import Test.Hspec (SpecWith, it, shouldBe)
--------------------------------------------------------------------------------
-- Preamble
spec :: SpecWith State
spec = Context.run [] tests
--------------------------------------------------------------------------------
-- Tests
tests :: Context.Options -> SpecWith State
tests _opts = it "No-op" \_ -> do
() `shouldBe` ()