mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 16:25:57 +00:00
* TMVar lock to avoid subscriber and client processing in parallel, fix the test * run SMP server as part of the test * stabilize tests * update simplexmq * test: stabilize getting invitation from terminal * remove unused import * simplify test
12 lines
285 B
Haskell
12 lines
285 B
Haskell
import ChatClient
|
|
import ChatTests
|
|
import MarkdownTests
|
|
import ProtocolTests
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = withSmpServer . hspec $ do
|
|
describe "SimpleX chat markdown" markdownTests
|
|
describe "SimpleX chat protocol" protocolTests
|
|
describe "SimpleX chat client" chatTests
|