From 92e4695a55e0d1e3718c250daeb9aec8ad9c94b3 Mon Sep 17 00:00:00 2001 From: Jerry Jones Date: Wed, 10 Jul 2024 14:30:48 -0500 Subject: [PATCH] Re-enable zoom out e2e tests --- test/e2e/specs/site-editor/zoom-out.spec.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/e2e/specs/site-editor/zoom-out.spec.js b/test/e2e/specs/site-editor/zoom-out.spec.js index 53b777a2545a34..3fed2b49f8e4a6 100644 --- a/test/e2e/specs/site-editor/zoom-out.spec.js +++ b/test/e2e/specs/site-editor/zoom-out.spec.js @@ -3,10 +3,7 @@ */ const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' ); -// 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.describe( 'Zoom Out', () => { test.beforeAll( async ( { requestUtils } ) => { await requestUtils.activateTheme( 'emptytheme' ); } );