mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 22:55:48 +00:00
* started chat protocol * text message example * events json * same style comments * jsonc * num for rendering * try to fix comment rendering * revert num * chat protocol: make msg params closer to types * AppMessage type * combine new and old simplexmq dependencies * json parsers * version-compatible types for connection requests * more parsers * remove import * decode/encode from/to AppMessage * make group invitation a property in params * switch chat to the new agent * remove "compatibility" attempt * new JSON encoding for chat messages * simplexmq from github * update MsgContent name Co-authored-by: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com>
12 lines
291 B
Haskell
12 lines
291 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
|