test: fix E2E test — search for 'reload' instead of removed 'reindex'

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
lucaronin
2026-03-24 16:31:51 +01:00
parent 0ee8d38a83
commit 3f4ce6a2ae

View File

@@ -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)
})