mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-26 23:50:46 +00:00
- add pr-review e2e test - speed up most tests by logging in via POST to avoid the login form, login form is still exercised in a dedicated test - speed up most tests be removing post-test cleanup, unnecessary because each repo is created with a unique name - misc parallelization and api call reduction - total suite runtime is about the same as before --------- Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
13 lines
496 B
TypeScript
13 lines
496 B
TypeScript
import {env} from 'node:process';
|
|
import {test} from '@playwright/test';
|
|
import {login, randomString} from './utils.ts';
|
|
|
|
test('create a repository', async ({page}) => {
|
|
const repoName = `e2e-repo-${randomString(8)}`;
|
|
await login(page);
|
|
await page.goto('/repo/create');
|
|
await page.locator('input[name="repo_name"]').fill(repoName);
|
|
await page.getByRole('button', {name: 'Create Repository'}).click();
|
|
await page.waitForURL(new RegExp(`/${env.GITEA_TEST_E2E_USER}/${repoName}$`));
|
|
});
|