M17–M19: #133–#137 (Kommentare inline, Statuszeile, Transklusion, Excalidraw, Checkbox-Fix) #138

Merged
fable-5 merged 10 commits from m17-m19-issues into main 2026-07-19 09:38:38 +02:00
Showing only changes of commit a84e9880bd - Show all commits

View File

@ -131,8 +131,9 @@ describe.skipIf(!hasTestDb)('public read access (e2e, issue #56)', () => {
};
expect(body.openCount).toBe(1);
expect(body.threads).toHaveLength(1);
expect(body.threads[0].root.body).toBe('A public remark');
expect(body.threads[0].replies.map((r) => r.body)).toEqual(['A public reply']);
const [thread] = body.threads;
expect(thread!.root.body).toBe('A public remark');
expect(thread!.replies.map((r) => r.body)).toEqual(['A public reply']);
// A non-public page never reveals its comments either.
await api().get(`/api/v1/public/${privatePondSlug}/${privatePageSlug}/comments`).expect(404);