From 06f56422524c7ece761153c656e1481416706719 Mon Sep 17 00:00:00 2001 From: dan mackinlay Date: Sun, 5 Apr 2026 11:08:57 +0000 Subject: [PATCH] Fix stale ls test expectation --- test/cli.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/cli.test.ts b/test/cli.test.ts index 30f093a..fdbfabc 100644 --- a/test/cli.test.ts +++ b/test/cli.test.ts @@ -837,8 +837,7 @@ describe("CLI ls Command", () => { test("lists files in a collection", async () => { const { stdout, exitCode } = await runQmd(["ls", "fixtures"], { dbPath: localDbPath }); expect(exitCode).toBe(0); - // handelize converts to lowercase - expect(stdout).toContain("qmd://fixtures/readme.md"); + expect(stdout).toContain("qmd://fixtures/README.md"); expect(stdout).toContain("qmd://fixtures/notes/meeting.md"); });