SimpleX-Chat/tests/Test.hs

23 lines
605 B
Haskell
Raw Normal View History

import ChatClient
import ChatTests
-- import Control.Logger.Simple
import MarkdownTests
import MobileTests
import ProtocolTests
2022-04-05 12:44:22 +04:00
import SchemaDump
import Test.Hspec
main :: IO ()
main = do
-- setLogLevel LogDebug -- LogError
-- withGlobalLogging logCfg $
withSmpServer . hspec $ do
describe "SimpleX chat markdown" markdownTests
describe "SimpleX chat protocol" protocolTests
describe "Mobile API Tests" mobileTests
describe "SimpleX chat client" chatTests
describe "Schema dump" schemaDumpTest
-- logCfg :: LogConfig
-- logCfg = LogConfig {lc_file = Nothing, lc_stderr = True}