2021-07-07 22:46:38 +01:00
|
|
|
module ChatTests where
|
|
|
|
|
2023-12-11 15:50:32 +02:00
|
|
|
import ChatTests.ChatList
|
2023-02-01 17:21:13 +00:00
|
|
|
import ChatTests.Direct
|
|
|
|
import ChatTests.Files
|
|
|
|
import ChatTests.Groups
|
2024-01-11 19:01:44 +02:00
|
|
|
import ChatTests.Local
|
2023-02-01 17:21:13 +00:00
|
|
|
import ChatTests.Profiles
|
2021-07-07 22:46:38 +01:00
|
|
|
import Test.Hspec
|
|
|
|
|
2023-01-31 11:07:48 +00:00
|
|
|
chatTests :: SpecWith FilePath
|
2021-07-16 07:40:55 +01:00
|
|
|
chatTests = do
|
2023-09-20 00:26:03 +04:00
|
|
|
describe "direct tests" chatDirectTests
|
|
|
|
describe "group tests" chatGroupTests
|
2024-01-11 19:01:44 +02:00
|
|
|
describe "local chats tests" chatLocalChatsTests
|
2023-09-20 00:26:03 +04:00
|
|
|
describe "file tests" chatFileTests
|
|
|
|
describe "profile tests" chatProfileTests
|
2023-12-11 15:50:32 +02:00
|
|
|
describe "chat list pagination tests" chatListTests
|