mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-06 20:56:00 +01:00
Revert createRepo/deleteRepo to API-based functions for test reliability. The UI-based versions were flaky due to navigation timing. Also double all playwright timeouts (local and CI), rename API functions to apiX convention, and disable playwright/expect-expect lint rule. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
664 B
TypeScript
15 lines
664 B
TypeScript
import {env} from 'node:process';
|
|
import {test, expect} from '@playwright/test';
|
|
import {login, apiCreateRepo, apiDeleteRepo} from './utils.ts';
|
|
|
|
test('create a milestone', async ({page}) => {
|
|
const repoName = `e2e-milestone-${Date.now()}`;
|
|
await login(page);
|
|
await apiCreateRepo(page.request, {name: repoName});
|
|
await page.goto(`/${env.E2E_USER}/${repoName}/milestones/new`);
|
|
await page.getByPlaceholder('Title').fill('Test Milestone');
|
|
await page.getByRole('button', {name: 'Create Milestone'}).click();
|
|
await expect(page.locator('.milestone-list')).toContainText('Test Milestone');
|
|
await apiDeleteRepo(page.request, env.E2E_USER, repoName);
|
|
});
|