0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-11 02:54:05 +02:00

tests(e2e): remove test.fixme — let test fail to document the bug (#37221)

This commit is contained in:
tunichgud 2026-04-24 23:47:02 +02:00
parent 073c19a26a
commit 54c2af6d09

View File

@ -2,7 +2,7 @@ import {env} from 'node:process';
import {test, expect} from '@playwright/test';
import {login, randomString, apiCreateRepo, apiCreateFile, apiDeleteRepo} from './utils.ts';
test.fixme('code search returns results for all-numeric search terms', async ({page, request}) => {
test('code search returns results for all-numeric search terms', async ({page, request}) => {
const owner = env.GITEA_TEST_E2E_USER;
const repo = `e2e-repo-search-${randomString(6)}`;