mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 18:35:49 +00:00
* core: test async handshake * Update tests/ChatTests.hs Co-authored-by: JRoberts <8711996+jr-simplex@users.noreply.github.com>
23 lines
605 B
Haskell
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}
|