Skip to content

Commit 0e9c2c5

Browse files
authored
Increase time to wait for e2e events to arrive (#383)
1 parent fee6c7f commit 0e9c2c5

File tree

1 file changed

+1
-1
lines changed
  • sentry-kotlin-multiplatform/src/commonTest/kotlin/io/sentry/kotlin/multiplatform

1 file changed

+1
-1
lines changed

sentry-kotlin-multiplatform/src/commonTest/kotlin/io/sentry/kotlin/multiplatform/SentryE2ETest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class SentryE2ETest : BaseSentryTest() {
7474
var json = ""
7575
val result: SentryEventSerializable = withContext(Dispatchers.Default) {
7676
while (json.isEmpty() || json.contains("Event not found")) {
77-
delay(5000)
77+
delay(20000)
7878
json = fetchEvent(eventId)
7979
assertFalse(json.contains("Invalid token"), "Invalid auth token")
8080
}

0 commit comments

Comments
 (0)