0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-22 13:15:23 +01:00

rename test

This commit is contained in:
silverwind 2026-02-20 04:11:30 +01:00
parent d132030206
commit 6bc667d7d3
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443

View File

@ -2,7 +2,7 @@ import {env} from 'node:process';
import {test, expect} from '@playwright/test';
import {apiCreateRepo, apiDeleteRepo} from './utils.ts';
test('README renders on repository page', async ({page}) => {
test('repo readme', async ({page}) => {
const repoName = `e2e-readme-${Date.now()}`;
await apiCreateRepo(page.request, {name: repoName});
await page.goto(`/${env.GITEA_TEST_E2E_USER}/${repoName}`);