mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* wip
* wip
* test
* mute
* tests
* simplify (only bool flag)
* re-encrypt file
* tests
* more tests (wip)
* fix relative paths, refactor
* more tests
* more locks
* fix, tests
* more tests
* rework (revert from bool to ids)
* update schema
* more tests
* add to info
* ForwardedMsg container
* Revert "ForwardedMsg container"
This reverts commit bb57f12151
.
* parser
* more tests
* rework api
* more locks
* test
* move
* remove from
* view
* prohibit editing
* item info view
---------
Co-authored-by: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com>
20 lines
585 B
Haskell
20 lines
585 B
Haskell
module ChatTests where
|
|
|
|
import ChatTests.ChatList
|
|
import ChatTests.Direct
|
|
import ChatTests.Files
|
|
import ChatTests.Forward
|
|
import ChatTests.Groups
|
|
import ChatTests.Local
|
|
import ChatTests.Profiles
|
|
import Test.Hspec hiding (it)
|
|
|
|
chatTests :: SpecWith FilePath
|
|
chatTests = do
|
|
describe "direct tests" chatDirectTests
|
|
describe "forward tests" chatForwardTests
|
|
describe "group tests" chatGroupTests
|
|
describe "local chats tests" chatLocalChatsTests
|
|
describe "file tests" chatFileTests
|
|
describe "profile tests" chatProfileTests
|
|
describe "chat list pagination tests" chatListTests
|