refactor(tools): fix empty catches, remove AI slop from code comments

This commit is contained in:
YeonGyu-Kim
2026-04-03 19:17:09 +09:00
parent 3689ecd5b0
commit 22283fca6d
10 changed files with 38 additions and 35 deletions
@@ -350,10 +350,10 @@ describe("runFormattersForFile", () => {
},
})
//#when run for a .go file, but only .ts formatters registered
//#when, run for a .go file, but only .ts formatters registered
await runFormattersForFile(client, "/project", "/src/main.go")
//#then no error thrown
//#then, no error thrown
})
it("runs formatter for matching extension", async () => {
@@ -367,10 +367,10 @@ describe("runFormattersForFile", () => {
},
})
//#when echo is a safe no-op command
//#when, echo is a safe no-op command
await runFormattersForFile(client, "/tmp", "/tmp/test.ts")
//#then should complete without error
//#then, should complete without error
expect(client.config.get).toHaveBeenCalledTimes(1)
})
})