mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* simplify mobile API to have single controller * update chat response in swift * add async to stack
13 lines
346 B
Haskell
13 lines
346 B
Haskell
import ChatClient
|
|
import ChatTests
|
|
import MarkdownTests
|
|
import MobileTests
|
|
import ProtocolTests
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = withSmpServer . hspec $ do
|
|
describe "SimpleX chat markdown" markdownTests
|
|
describe "SimpleX chat protocol" protocolTests
|
|
describe "Mobile API Tests" mobileTests
|
|
describe "SimpleX chat client" chatTests
|