mirror of
https://github.com/Start9Labs/registry.git
synced 2026-03-26 18:21:52 +00:00
16 lines
382 B
Haskell
16 lines
382 B
Haskell
module Main where
|
|
|
|
import GHC.IO.Encoding
|
|
import qualified Lib.Types.EmverProp as EmverProp
|
|
import qualified Spec
|
|
import Startlude
|
|
import Test.Hspec.Formatters
|
|
import Test.Hspec.Runner
|
|
|
|
|
|
main :: IO ()
|
|
main = do
|
|
setLocaleEncoding utf8
|
|
EmverProp.tests
|
|
hspecWith defaultConfig { configFormatter = Just progress } Spec.spec
|