graphql-engine/server/tests-hspec/Test/HelloWorldSpec.hs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
572 B
Haskell
Raw Normal View History

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