From 98ab39cbfdf9bb32ff7b08db879d44af79e6a784 Mon Sep 17 00:00:00 2001 From: Miroslav Mitev Date: Fri, 12 Dec 2025 20:27:17 +0200 Subject: [PATCH 1/2] Skip failing e2e test --- .../specs/admin/blocks/course-list-block.spec.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts b/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts index 9737272a81..ab323208e0 100644 --- a/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts +++ b/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts @@ -53,7 +53,12 @@ describe( 'Courses List Block', () => { } ); } ); - test( 'it should render a list of courses', async ( { page } ) => { + /** + * This test is failing because the course list block patterns now working on WordPress 6.9. A fix was merged but not released yet. + * + * @see https://github.com/Automattic/sensei/issues/7873 + */ + test.fixme( 'it should render a list of courses', async ( { page } ) => { const postTypePage = new PostType( page, 'page' ); await postTypePage.goToPostTypeCreationPage(); From 314e53f2b70b633d21860980c685ba5fd946c8e3 Mon Sep 17 00:00:00 2001 From: Miroslav Mitev Date: Fri, 12 Dec 2025 20:34:14 +0200 Subject: [PATCH 2/2] Update tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../e2e-playwright/specs/admin/blocks/course-list-block.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts b/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts index ab323208e0..d1a2cce630 100644 --- a/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts +++ b/tests/e2e-playwright/specs/admin/blocks/course-list-block.spec.ts @@ -54,7 +54,7 @@ describe( 'Courses List Block', () => { } ); /** - * This test is failing because the course list block patterns now working on WordPress 6.9. A fix was merged but not released yet. + * This test is failing because the course list block patterns are now not working on WordPress 6.9. A fix was merged but not released yet. * * @see https://github.com/Automattic/sensei/issues/7873 */