test: delay after mobile tests to fix SQLite IO error on Mac (#653)

This commit is contained in:
JRoberts 2022-05-14 20:10:46 +04:00 committed by GitHub
parent 7ad7f4f91a
commit 03eaa94324
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
import ChatClient
import ChatTests
-- import Control.Logger.Simple
import Control.Concurrent (threadDelay)
import MarkdownTests
import MobileTests
import ProtocolTests
@ -15,6 +16,8 @@ main = do
describe "SimpleX chat markdown" markdownTests
describe "SimpleX chat protocol" protocolTests
describe "Mobile API Tests" mobileTests
-- Workaround for SQLite IO error in first test after mobile tests on Mac
it "Delay after Mobile API Tests" $ threadDelay 100000
describe "SimpleX chat client" chatTests
describe "Schema dump" schemaDumpTest