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('');