@@ -240,7 +240,7 @@ async fn test_issue_comment_happy_path() {
240
240
. await ;
241
241
242
242
// Wait for our mock endpoints to have been called
243
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , update_status. wait_until_satisfied ( ) )
243
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , update_status. wait_until_satisfied ( ) )
244
244
. await
245
245
. ok ( ) ;
246
246
@@ -270,7 +270,7 @@ async fn test_pr_opened_happy_path_with_comment_reuse() {
270
270
. await ;
271
271
272
272
// Wait for our post status endpoint to have been called
273
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , post_status. wait_until_satisfied ( ) )
273
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , post_status. wait_until_satisfied ( ) )
274
274
. await
275
275
. ok ( ) ;
276
276
@@ -288,7 +288,7 @@ async fn test_pr_opened_happy_path_with_comment_reuse() {
288
288
. await ;
289
289
290
290
// Wait for our post status endpoint to have been called
291
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , post_status. wait_until_satisfied ( ) )
291
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , post_status. wait_until_satisfied ( ) )
292
292
. await
293
293
. ok ( ) ;
294
294
@@ -326,7 +326,7 @@ async fn test_pr_opened_happy_path_with_failed_comment_reuse() {
326
326
. await ;
327
327
328
328
// Wait for our post status endpoint to have been called
329
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , post_status. wait_until_satisfied ( ) )
329
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , post_status. wait_until_satisfied ( ) )
330
330
. await
331
331
. unwrap ( ) ;
332
332
@@ -360,7 +360,7 @@ async fn test_pr_synchronize_happy_path() {
360
360
. await ;
361
361
362
362
// Wait for our mock endpoints to have been called
363
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , post_status. wait_until_satisfied ( ) )
363
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , post_status. wait_until_satisfied ( ) )
364
364
. await
365
365
. ok ( ) ;
366
366
@@ -412,7 +412,7 @@ async fn test_pr_synchronize_cached() {
412
412
. await ;
413
413
414
414
// Wait for our mock endpoints to have been called
415
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , post_status. wait_until_satisfied ( ) )
415
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , post_status. wait_until_satisfied ( ) )
416
416
. await
417
417
. ok ( ) ;
418
418
@@ -442,7 +442,7 @@ async fn test_pr_review_happy_path() {
442
442
. await ;
443
443
444
444
// Wait for our mock endpoints to have been called
445
- tokio:: time:: timeout ( Duration :: from_secs ( 2 ) , post_status. wait_until_satisfied ( ) )
445
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , post_status. wait_until_satisfied ( ) )
446
446
. await
447
447
. ok ( ) ;
448
448
@@ -863,7 +863,7 @@ impl TestServer {
863
863
tokio:: spawn ( server) ;
864
864
865
865
// Sanity check: ensure the server retrieved the app installation and an auth token
866
- tokio:: time:: timeout ( Duration :: from_secs ( 1 ) , mock_get_app. wait_until_satisfied ( ) )
866
+ tokio:: time:: timeout ( Duration :: from_secs ( 5 ) , mock_get_app. wait_until_satisfied ( ) )
867
867
. await
868
868
. unwrap ( ) ;
869
869
tokio:: time:: timeout (
0 commit comments