This commit is contained in:
silverwind
2026-02-18 03:03:16 +01:00
parent 530b86e244
commit aaad640397
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -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);
});
-2
View File
@@ -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('');