mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-02 20:54:24 +03:00
16 lines
420 B
Haskell
16 lines
420 B
Haskell
|
{-# LANGUAGE ImportQualifiedPost #-}
|
||
|
{-# OPTIONS_GHC -Wno-missing-export-lists #-}
|
||
|
|
||
|
module Main where
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
import Spec qualified as Test
|
||
|
import Test.Hspec qualified as Hspec
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
-- | Entrypoint for api-tests test-suite.
|
||
|
main :: IO ()
|
||
|
main = Hspec.hspec Test.spec
|