graphql-engine/server/tests-hspec/Test/HelloWorldSpec.hs
2022-01-21 07:49:31 +00:00

25 lines
580 B
Haskell

-- | A starting point feature test.
module Test.HelloWorldSpec (spec) where
import Harness.State (State)
import Harness.Test.Feature qualified as Feature
import Test.Hspec
import Prelude
--------------------------------------------------------------------------------
-- Preamble
spec :: SpecWith State
spec =
Feature.feature
Feature.Feature
{ Feature.backends = [],
Feature.tests = tests
}
--------------------------------------------------------------------------------
-- Tests
tests :: SpecWith State
tests = it "No-op" (const (shouldBe () ()))