diff --git a/packages/e2e-tests/specs/editor/blocks/navigation.test.js b/packages/e2e-tests/specs/editor/blocks/navigation.test.js index bf9efc81bdf0e..b37f968bc9ba2 100644 --- a/packages/e2e-tests/specs/editor/blocks/navigation.test.js +++ b/packages/e2e-tests/specs/editor/blocks/navigation.test.js @@ -134,12 +134,5 @@ describe( 'Navigation', () => { // Expect a Navigation Block with two Navigation Links in the snapshot. expect( await getEditedPostContent() ).toMatchSnapshot(); - - // TODO - this is needed currently because when adding a link using the suggestion list, - // a submit button is used. The form that the submit button is in is unmounted when submission - // occurs, resulting in a warning 'Form submission canceled because the form is not connected' - // in Chrome. - // Ideally, the suggestions wouldn't be implemented using submit buttons. - expect( console ).toHaveWarned(); } ); } );