* simplify mobile API to have single controller * update chat response in swift * add async to stack
14 lines
346 B
Haskell
14 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
|