mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-06-08 19:33:49 +00:00
14 lines
349 B
Haskell
14 lines
349 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
|