test(client): remove debug statements

This commit is contained in:
Elian Doran 2026-01-08 18:10:00 +02:00
parent 034091a696
commit 521952ebcc
No known key found for this signature in database

View File

@ -107,7 +107,6 @@ describe("Text content renderer", () => {
]
});
await renderText(parentNote, $(contentEl));
console.log(contentEl.innerHTML);
const items = contentEl.querySelectorAll("a");
expect(items.length).toBe(2);
expect(items[0].textContent).toBe("Child note 1");
@ -125,7 +124,6 @@ describe("Text content renderer", () => {
]
});
await renderText(parentNote, $(contentEl));
console.log(contentEl.innerHTML);
const items = contentEl.querySelectorAll("a");
expect(items.length).toBe(2);
expect(items[0].textContent).toBe("Child note 1");