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
+1 -1
View File
@@ -535,7 +535,7 @@ describe("syncAllTasksToTodos", () => {
// when
await syncAllTasksToTodos(mockCtx, tasks, "session-1", writer);
// then no duplicates
// then, no duplicates
const matching = writtenTodos.filter((t: TodoInfo) => t.content === "Task 1 (updated)");
expect(matching.length).toBe(1);
expect(matching[0].status).toBe("in_progress");