2021-08-05 14:51:48 -05:00
|
|
|
import ChatClient
|
2021-07-07 16:46:38 -05:00
|
|
|
import ChatTests
|
2021-05-09 04:53:18 -05:00
|
|
|
import MarkdownTests
|
2022-02-06 10:18:01 -06:00
|
|
|
import MobileTests
|
2021-07-04 12:42:24 -05:00
|
|
|
import ProtocolTests
|
2021-05-09 04:53:18 -05:00
|
|
|
import Test.Hspec
|
|
|
|
|
|
|
|
main :: IO ()
|
2021-08-05 14:51:48 -05:00
|
|
|
main = withSmpServer . hspec $ do
|
|
|
|
describe "SimpleX chat markdown" markdownTests
|
|
|
|
describe "SimpleX chat protocol" protocolTests
|
2022-02-06 10:18:01 -06:00
|
|
|
describe "Mobile API Tests" mobileTests
|
2021-08-05 14:51:48 -05:00
|
|
|
describe "SimpleX chat client" chatTests
|