From e49de69de65ba66f2842f24c2b02413a7ee48848 Mon Sep 17 00:00:00 2001 From: George Mamadashvili Date: Fri, 24 May 2024 11:08:17 +0400 Subject: [PATCH] Skip flaky 'Zoom out' e2e test --- test/e2e/specs/site-editor/zoom-out.spec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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' ); } );