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