mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-07-29 22:50:14 +00:00
12 lines
300 B
Haskell
12 lines
300 B
Haskell
module Main where
|
|
|
|
import Simplex.StressTest
|
|
import System.Directory (createDirectoryIfMissing, removeDirectoryRecursive)
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = do
|
|
createDirectoryIfMissing False "tests/tmp"
|
|
hspec $ describe "SimpleX chat client" chatTests
|
|
removeDirectoryRecursive "tests/tmp"
|