mirror of
https://github.com/go-gitea/gitea.git
synced 2026-02-23 02:13:18 +01:00
15 lines
592 B
TypeScript
15 lines
592 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);
|
|
await page.getByLabel('Biography').fill('');
|
|
await page.getByRole('button', {name: 'Update Profile'}).click();
|
|
await expect(page.getByLabel('Biography')).toHaveValue('');
|
|
});
|