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