From 4fbe1dc3b0b6e21aa64a0ce36763d596e9e2272d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ari=20Perkki=C3=B6?= Date: Mon, 14 Apr 2025 08:35:02 +0300 Subject: [PATCH] test: disable "download as zip" tests for now --- e2e/test/topbar.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/test/topbar.test.ts b/e2e/test/topbar.test.ts index 07e207923..986ab02b6 100644 --- a/e2e/test/topbar.test.ts +++ b/e2e/test/topbar.test.ts @@ -21,7 +21,8 @@ test('user can change theme', async ({ page }) => { await expect(heading).toHaveCSS('color', hexToRGB(theme.colors.gray[200])); }); -test('user can download project as zip', async ({ page }) => { +// TODO: Enable once https://github.com/stackblitz/tutorialkit/issues/447 is fixed +test.skip('user can download project as zip', async ({ page }) => { await page.goto('/', { waitUntil: 'networkidle' }); const downloadPromise = page.waitForEvent('download');