Skip to content

Commit

Permalink
increase timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Sep 4, 2023
1 parent d46c2b1 commit e39193e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fun runTest(
rootTag: String? = null,
enableLogs: Boolean = enableLogsGlobal,
block: suspend TestScope.() -> Unit,
): TestResult = runTest(timeout = 10.minutes) {
): TestResult = runTest(timeout = 30.minutes) {
val logger = TestLogger(enableLogs, rootTag)
logger.print("PLATFORM: $currentTestPlatform")
TestScope(logger).block()
Expand Down
6 changes: 3 additions & 3 deletions gradle/js/karma/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

config.client = config.client || {}
config.client.mocha = config.client.mocha || {}
config.client.mocha.timeout = '1800s'
config.browserNoActivityTimeout = 1800000
config.browserDisconnectTimeout = 1800000
config.client.mocha.timeout = '6000s'
config.browserNoActivityTimeout = 6000000
config.browserDisconnectTimeout = 6000000

0 comments on commit e39193e

Please sign in to comment.