Files
simplex-chat/tests/ChatTests.hs
Evgeny Poberezkin 510b8b57fe add test timeout
2024-01-13 16:32:04 +00:00

19 lines
516 B
Haskell

module ChatTests where
import ChatTests.ChatList
import ChatTests.Direct
import ChatTests.Files
import ChatTests.Groups
import ChatTests.Local
import ChatTests.Profiles
import Test.Hspec hiding (it)
chatTests :: SpecWith FilePath
chatTests = do
describe "direct tests" chatDirectTests
describe "group tests" chatGroupTests
describe "local chats tests" chatLocalChatsTests
describe "file tests" chatFileTests
describe "profile tests" chatProfileTests
describe "chat list pagination tests" chatListTests