From 62df19dc8b2701ba4eefded970d11a85a3af1f8f Mon Sep 17 00:00:00 2001 From: Ken-ichi Date: Wed, 7 Aug 2024 15:43:35 -0700 Subject: [PATCH] Bump final e2e test timeout to 20s (#1935) --- e2e/signedIn.e2e.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/signedIn.e2e.js b/e2e/signedIn.e2e.js index cf90e39e0..ffc5f6304 100644 --- a/e2e/signedIn.e2e.js +++ b/e2e/signedIn.e2e.js @@ -185,7 +185,7 @@ describe( "Signed in user", () => { // observations, the upload prompt will be the stable status text at this // point, and we can confirm deletion by testing for the absence of the // list item for the observation we deleted. - await waitFor( element( by.text( /Upload 1 observation/ ) ) ).toBeVisible( ).withTimeout( 10000 ); + await waitFor( element( by.text( /Upload 1 observation/ ) ) ).toBeVisible( ).withTimeout( 20_000 ); await expect( obsListItem ).toBeNotVisible( ); } ); } );