From aaad6403976d98e29dba29d408821a8a21b9e13f Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 17 Feb 2026 20:33:27 +0100 Subject: [PATCH] cleanup --- tests/e2e/org.test.ts | 2 -- tests/e2e/user-settings.test.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/e2e/org.test.ts b/tests/e2e/org.test.ts index b790d929b6..d2d99c3efb 100644 --- a/tests/e2e/org.test.ts +++ b/tests/e2e/org.test.ts @@ -8,7 +8,5 @@ test('create an organization', async ({page}) => { await page.getByLabel('Organization Name').fill(orgName); await page.getByRole('button', {name: 'Create Organization'}).click(); await expect(page).toHaveURL(new RegExp(`/org/${orgName}`)); - - // cleanup await deleteOrg(page, orgName); }); diff --git a/tests/e2e/user-settings.test.ts b/tests/e2e/user-settings.test.ts index 3e339a2f26..ee1c6c98eb 100644 --- a/tests/e2e/user-settings.test.ts +++ b/tests/e2e/user-settings.test.ts @@ -8,8 +8,6 @@ test('update profile biography', async ({page}) => { await page.getByLabel('Biography').fill(bio); await page.getByRole('button', {name: 'Update Profile'}).click(); await expect(page.getByLabel('Biography')).toHaveValue(bio); - - // cleanup: clear the biography await page.getByLabel('Biography').fill(''); await page.getByRole('button', {name: 'Update Profile'}).click(); await expect(page.getByLabel('Biography')).toHaveValue('');