From 54c2af6d09f1265c2197c4504faa00672e51219e Mon Sep 17 00:00:00 2001 From: tunichgud Date: Fri, 24 Apr 2026 23:47:02 +0200 Subject: [PATCH] =?UTF-8?q?tests(e2e):=20remove=20test.fixme=20=E2=80=94?= =?UTF-8?q?=20let=20test=20fail=20to=20document=20the=20bug=20(#37221)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/e2e/repo-search.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/repo-search.test.ts b/tests/e2e/repo-search.test.ts index b49e3e5ee4..6b487d14c7 100644 --- a/tests/e2e/repo-search.test.ts +++ b/tests/e2e/repo-search.test.ts @@ -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)}`;