0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-22 21:53:17 +01:00
This commit is contained in:
silverwind 2026-02-17 20:33:27 +01:00
parent 530b86e244
commit aaad640397
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443
2 changed files with 0 additions and 4 deletions

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);
});

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