-- | Test entry point for sis-server. module Main (main) where import Test.Hspec (Spec, describe, hspec, it, shouldBe) main :: IO () main = hspec spec spec :: Spec spec = describe "Sis.Server" $ it "health check returns ok" $ True `shouldBe` True