mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
b091c75372
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3421 GitOrigin-RevId: 8802d7e6a360edee62011ef371cc8930f36b25b1
25 lines
580 B
Haskell
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 () ()))
|