From 885f94922cacdf3426210f91ccc4240403bb582c Mon Sep 17 00:00:00 2001 From: Daniel Richards Date: Tue, 26 Jul 2022 17:26:15 +0800 Subject: [PATCH] Skip flaky navigation block permissions test (#42693) --- packages/e2e-tests/specs/editor/blocks/navigation.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/e2e-tests/specs/editor/blocks/navigation.test.js b/packages/e2e-tests/specs/editor/blocks/navigation.test.js index 0f69d83ed3cc34..f2fc9ec2c9e996 100644 --- a/packages/e2e-tests/specs/editor/blocks/navigation.test.js +++ b/packages/e2e-tests/specs/editor/blocks/navigation.test.js @@ -1317,9 +1317,10 @@ Expected mock function not to be called but it was called with: ["POST", "http:/ await switchUserToAdmin(); } ); - it( 'shows a warning if user does not have permission to create navigation menus', async () => { + it.skip( 'shows a warning if user does not have permission to create navigation menus', async () => { const noticeText = 'You do not have permission to create Navigation Menus.'; + // Switch to a Contributor role user - they should not have // permission to update Navigations. await loginUser( contributorUsername, contributorPassword );