mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-04-29 16:55:24 +00:00
2eb5ce24ec
Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
15 lines
402 B
Haskell
15 lines
402 B
Haskell
import AgentTests
|
|
import MarkdownTests
|
|
import ServerTests
|
|
import System.Directory (createDirectoryIfMissing, removeDirectoryRecursive)
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = do
|
|
createDirectoryIfMissing False "tests/tmp"
|
|
hspec $ do
|
|
describe "SimpleX markdown" markdownTests
|
|
describe "SMP server" serverTests
|
|
describe "SMP client agent" agentTests
|
|
removeDirectoryRecursive "tests/tmp"
|