diff --git a/e2e/signedOut.e2e.js b/e2e/signedOut.e2e.js index 211480c86..291019d63 100644 --- a/e2e/signedOut.e2e.js +++ b/e2e/signedOut.e2e.js @@ -17,15 +17,4 @@ describe( "Signed out user", () => { await waitFor( loginText ).toBeVisible( ).withTimeout( 10000 ); await expect( loginText ).toBeVisible( ); } ); - - it( "should add an observation without evidence", async () => { - const addObsButton = element( by.id( "add-obs-button" ) ); - await waitFor( addObsButton ).toBeVisible( ).withTimeout( 10000 ); - await addObsButton.tap( ); - await expect( element( by.id( "evidence-text" ) ) ).toBeVisible( ); - const obsWithoutEvidenceButton = element( by.id( "observe-without-evidence-button" ) ); - await expect( obsWithoutEvidenceButton ).toBeVisible( ); - await obsWithoutEvidenceButton.tap( ); - await waitFor( element( by.id( "new-observation-text" ) ) ).toBeVisible( ).withTimeout( 10000 ); - } ); } );