mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-14 22:36:21 +00:00
* create group after invitation * add group invitation to db, show sent and received group invitations * test creating group and sending invitation * establish group connections (WIP) * connect user to the inviter, notification, member classification
12 lines
263 B
Haskell
12 lines
263 B
Haskell
import ChatTests
|
|
import MarkdownTests
|
|
import ProtocolTests
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = do
|
|
hspec $ do
|
|
describe "SimpleX chat markdown" markdownTests
|
|
describe "SimpleX chat protocol" protocolTests
|
|
xdescribe "SimpleX chat client" chatTests
|