diff --git a/e2e/playwright/basic-sketch.spec.ts b/e2e/playwright/basic-sketch.spec.ts index 9ef663b31..3beab9a90 100644 --- a/e2e/playwright/basic-sketch.spec.ts +++ b/e2e/playwright/basic-sketch.spec.ts @@ -145,11 +145,11 @@ async function doBasicSketch( } test.describe('Basic sketch', () => { - test('code pane open at start', async ({ page, homePage }) => { + test.fixme('code pane open at start', async ({ page, homePage }) => { await doBasicSketch(page, homePage, ['code']) }) - test('code pane closed at start', async ({ page, homePage }) => { + test.fixme('code pane closed at start', async ({ page, homePage }) => { // Load the app with the code panes await page.addInitScript(async (persistModelingContext) => { localStorage.setItem( diff --git a/e2e/playwright/code-pane-and-errors.spec.ts b/e2e/playwright/code-pane-and-errors.spec.ts index 2d807d1c9..e4a5a4cda 100644 --- a/e2e/playwright/code-pane-and-errors.spec.ts +++ b/e2e/playwright/code-pane-and-errors.spec.ts @@ -120,7 +120,7 @@ test.describe('Code pane and errors', () => { await expect(page.locator('.cm-tooltip').first()).toBeVisible() }) - test('When error is not in view you can click the badge to scroll to it', async ({ + test.fixme('When error is not in view you can click the badge to scroll to it', async ({ page, homePage, context, diff --git a/e2e/playwright/editor-tests.spec.ts b/e2e/playwright/editor-tests.spec.ts index 110ec7672..978673d1e 100644 --- a/e2e/playwright/editor-tests.spec.ts +++ b/e2e/playwright/editor-tests.spec.ts @@ -522,7 +522,7 @@ test.describe('Editor tests', () => { await expect(page.locator('.cm-lint-marker-error')).not.toBeVisible() }) - test('error with 2 source ranges gets 2 diagnostics', async ({ + test.fixme('error with 2 source ranges gets 2 diagnostics', async ({ page, homePage, }) => { diff --git a/e2e/playwright/testing-perspective-toggle.spec.ts b/e2e/playwright/testing-perspective-toggle.spec.ts index 55977e08a..ed589fe78 100644 --- a/e2e/playwright/testing-perspective-toggle.spec.ts +++ b/e2e/playwright/testing-perspective-toggle.spec.ts @@ -2,7 +2,7 @@ import { test, expect } from './zoo-test' import { getUtils } from './test-utils' test.describe('Test toggling perspective', () => { - test('via command palette and toggle', async ({ page, homePage }) => { + test.fixme('via command palette and toggle', async ({ page, homePage }) => { const u = await getUtils(page) // Locators and constants diff --git a/e2e/playwright/testing-settings.spec.ts b/e2e/playwright/testing-settings.spec.ts index 75d06feac..6d490ea42 100644 --- a/e2e/playwright/testing-settings.spec.ts +++ b/e2e/playwright/testing-settings.spec.ts @@ -443,7 +443,7 @@ test.describe('Testing settings', () => { } ) - test( + test.fixme( 'project settings reload on external change', { tag: '@electron' }, async ({ context, page }, testInfo) => {