mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
23 lines
498 B
Haskell
23 lines
498 B
Haskell
|
-- | A starting point feature test.
|
||
|
module HelloWorldSpec (spec) where
|
||
|
|
||
|
import Harness.Feature qualified as Feature
|
||
|
import Test.Hspec
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
-- Preamble
|
||
|
|
||
|
spec :: Spec
|
||
|
spec =
|
||
|
Feature.feature
|
||
|
Feature.Feature
|
||
|
{ Feature.backends = [],
|
||
|
Feature.tests = tests
|
||
|
}
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
-- Tests
|
||
|
|
||
|
tests :: Spec
|
||
|
tests = it "No-op" (shouldBe () ())
|