mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
ad7ecc8ed5
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3743 GitOrigin-RevId: e2b3dba91b1b9ca66e0e140f9ec8d6d2d2e8a319
20 lines
532 B
Haskell
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` ()
|