Files
simplex-chat/tests/Test.hs
Evgeny Poberezkin cd2eb9c88e core: test async handshake (#569)
* core: test async handshake

* Update tests/ChatTests.hs

Co-authored-by: JRoberts <8711996+jr-simplex@users.noreply.github.com>
2022-04-25 19:30:21 +04:00

23 lines
605 B
Haskell

import ChatClient
import ChatTests
-- import Control.Logger.Simple
import MarkdownTests
import MobileTests
import ProtocolTests
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}