0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-03-06 20:56:00 +01:00
gitea/tests/e2e/user-settings.test.ts
2026-02-18 03:03:15 +01:00

17 lines
627 B
TypeScript

import {test, expect} from '@playwright/test';
import {login} from './utils.ts';
test('update profile biography', async ({page}) => {
const bio = `e2e-bio-${Date.now()}`;
await login(page);
await page.goto('/user/settings');
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('');
});