mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-04 20:35:14 +02:00
Three boxes (repo/user/team) all share the same first-party module, so one happy-path test on the user box is sufficient as a regression gate. Drops the org/team helpers in tests/e2e/utils.ts that only those extra tests motivated. Co-Authored-By: Claude (Opus 4.7) <noreply@anthropic.com>
import {env} from 'node:process';
import {test, expect} from '@playwright/test';
import {apiCreateRepo, randomString} from './utils.ts';
test('repo readme', async ({page}) => {
const repoName = `e2e-readme-${randomString(8)}`;
await apiCreateRepo(page.request, {name: repoName});
await page.goto(`/${env.GITEA_TEST_E2E_USER}/${repoName}`);
await expect(page.locator('#readme')).toContainText(repoName);
});