* core: only skip creating agent user when app is first started
* firstTime
* prompt
* fix test
* if
* simplexmq
* ci timeout
* skip test
* add test timeout
* log test times
* simplexmq
* timeout
* simplexmq without new batching
* Revert "simplexmq without new batching"
This reverts commit 9879bcb57c
.
* without new batching again
* with builder, without sized builder
* lazy bytestring, same batching logic
* fewer chunks
* remove lazy
* optimize batching in simplexmq
19 lines
516 B
Haskell
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
|