module Hspec.Server where import Control.Monad (Monad(..)) import System.IO (IO) import Test.Tasty import qualified Hspec.Server.Error hspec :: IO TestTree hspec = do hspec_error <- Hspec.Server.Error.hspec return (testGroup "Server" hspec_error)