Merge pull request #16427 from keymanapp/chore/web/skiptests

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
This commit is contained in:
Eberhard Beilharz 2026-08-24 19:01:20 +02:00 committed by GitHub
commit caca1069a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@ async function setTimeoutAndLoadPage(page: Page, url: string): Promise<void> {
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');
}