From 7810101256b8ca29c514ad1a0045263401112228 Mon Sep 17 00:00:00 2001 From: "D. Seifert" Date: Thu, 27 Mar 2025 21:29:57 +0800 Subject: [PATCH] test --- tests/e2e/problem.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/problem.spec.ts b/tests/e2e/problem.spec.ts index 7d57388d..b61f2b8e 100644 --- a/tests/e2e/problem.spec.ts +++ b/tests/e2e/problem.spec.ts @@ -19,7 +19,8 @@ test('Should be able to load a problem', async ({ page }) => { await expect(page.getByText('Import the "problem" folder')).toBeVisible({ timeout: 30000 }); }); -test('Should be able to save a problem ', async ({ page }) => { +// TODO: Unskip this test once we can make sure we get a repro for a problem. +test.skip('Should be able to save a problem ', async ({ page }) => { await page.goto('/problems'); await page.getByRole('link', { name: 'App goes blank getting' }).click(); await page.getByRole('link', { name: 'Load Problem' }).click(); @@ -118,4 +119,3 @@ test('Confirm that admins see the "Save Problem" button', async ({ page }) => { await openSidebar(page); await expect(page.getByRole('button', { name: 'Save Problem' })).toBeVisible(); }); -