From f07e05fb159b9c807c00875cf30f841b5b9f6c33 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Fri, 21 Aug 2026 10:24:02 +0200 Subject: [PATCH] chore(web): skip guide-examples.tests.ts until race is fixed The guide-examples.tests.ts have a race so that they occasionally fail (#16167). This change disables the tests until we have a fix in place. Related-to: #16167 Build-bot: skip build:web Test-bot: skip --- web/src/test/auto/e2e/guide-examples.tests.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/test/auto/e2e/guide-examples.tests.ts b/web/src/test/auto/e2e/guide-examples.tests.ts index 19f2fb4bf8..13deb44472 100644 --- a/web/src/test/auto/e2e/guide-examples.tests.ts +++ b/web/src/test/auto/e2e/guide-examples.tests.ts @@ -9,7 +9,7 @@ async function setTimeoutAndLoadPage(page: Page, url: string): Promise { await loadPage(page, url); } -test.describe('First example from the guide', function () { +test.describe.skip('First example from the guide', function () { const beforeEach = async (page: Page) => { await setTimeoutAndLoadPage(page, 'http://localhost:3000/build/docs/engine/guide/examples/__first-example.html'); } @@ -41,7 +41,7 @@ test.describe('First example from the guide', function () { }); }); -test.describe('Auto-control example from the guide', function () { +test.describe.skip('Auto-control example from the guide', function () { const beforeEach = async (page: Page) => { await setTimeoutAndLoadPage(page, 'http://localhost:3000/build/docs/engine/guide/examples/__auto-control.html'); } @@ -69,7 +69,7 @@ test.describe('Auto-control example from the guide', function () { }); }); -test.describe('Control-by-control example from the guide', function () { +test.describe.skip('Control-by-control example from the guide', function () { const beforeEach = async (page: Page) => { await setTimeoutAndLoadPage(page, 'http://localhost:3000/build/docs/engine/guide/examples/__control-by-control.html'); } @@ -119,7 +119,7 @@ test.describe('Control-by-control example from the guide', function () { }); }); -test.describe('Full manual control example from the guide', function () { +test.describe.skip('Full manual control example from the guide', function () { const beforeEach = async (page: Page) => { await setTimeoutAndLoadPage(page, 'http://localhost:3000/build/docs/engine/guide/examples/__full-manual-control.html'); } @@ -203,7 +203,7 @@ test.describe('Full manual control example from the guide', function () { }); }); -test.describe('Manual control example from the guide', function () { +test.describe.skip('Manual control example from the guide', function () { const beforeEach = async (page: Page) => { await setTimeoutAndLoadPage(page, 'http://localhost:3000/build/docs/engine/guide/examples/__manual-control.html'); }