From 3f4ce6a2aee582026c732efc7c082b5920be4677 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Tue, 24 Mar 2026 16:31:51 +0100 Subject: [PATCH] =?UTF-8?q?test:=20fix=20E2E=20test=20=E2=80=94=20search?= =?UTF-8?q?=20for=20'reload'=20instead=20of=20removed=20'reindex'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/smoke/example.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/smoke/example.spec.ts b/tests/smoke/example.spec.ts index e871e360..8972c2c6 100644 --- a/tests/smoke/example.spec.ts +++ b/tests/smoke/example.spec.ts @@ -28,7 +28,7 @@ test.describe('Command Palette smoke tests', () => { test('typing filters the command list', async ({ page }) => { await openCommandPalette(page) - const found = await findCommand(page, 'reindex') + const found = await findCommand(page, 'reload') expect(found).toBe(true) })