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