Skip to content

Commit

Permalink
Bump leak detector timeouts
Browse files Browse the repository at this point in the history
CI machines are slower and sometimes take longer than 15s to run the stress tests.
  • Loading branch information
JakeWharton committed Jul 26, 2024
1 parent 71fc672 commit a0ec5e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redwood-leak-detector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ kotlin {
nodejs {
testTask {
useMocha {
// We use up to 10s of wall clock time to test leaks.
timeout = '15s'
// We use up to 10s of wall clock time to test leaks. Add extra time for slow CI machines.
timeout = '30s'
// Required for access to V8 GC function.
nodeJsArgs.add('--expose-gc')
}
Expand Down

0 comments on commit a0ec5e2

Please sign in to comment.