diff --git a/test/e2e/specs/site-editor/zoom-out.spec.js b/test/e2e/specs/site-editor/zoom-out.spec.js index 3fed2b49f8e4a6..53b777a2545a34 100644 --- a/test/e2e/specs/site-editor/zoom-out.spec.js +++ b/test/e2e/specs/site-editor/zoom-out.spec.js @@ -3,7 +3,10 @@ */ const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' ); -test.describe( 'Zoom Out', () => { +// The test is flaky and fails almost consistently. +// See: https://github.com/WordPress/gutenberg/issues/61806. +// eslint-disable-next-line playwright/no-skipped-test +test.describe.skip( 'Zoom Out', () => { test.beforeAll( async ( { requestUtils } ) => { await requestUtils.activateTheme( 'emptytheme' ); } );