simplex-chat/tests/Test.hs

16 lines
404 B
Haskell
Raw Normal View History

import ChatClient
import ChatTests
import MarkdownTests
import MobileTests
import ProtocolTests
2022-04-05 03:44:22 -05:00
import SchemaDump
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
2022-04-05 03:44:22 -05:00
describe "Schema dump" schemaDumpTest