From 1f497e4b18aa3bc6bbbcfa55c30a15614dd51b2a Mon Sep 17 00:00:00 2001 From: Test Date: Mon, 9 Mar 2026 09:28:48 +0100 Subject: [PATCH] =?UTF-8?q?test:=20fix=20flaky=20command=20palette=20smoke?= =?UTF-8?q?=20test=20=E2=80=94=20use=20reindex=20instead=20of=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Settings command is disabled in mock environment (onOpenSettings not wired), causing the 'typing filters the command list' test to always fail. Reindex Vault is always enabled and already tested in indexing-reindex-status.spec.ts. --- 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 fc849167..e871e360 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, 'settings') + const found = await findCommand(page, 'reindex') expect(found).toBe(true) })