debug: log mock results

This commit is contained in:
Julian Lam
2025-12-02 13:19:48 -05:00
parent 22d3c52332
commit 8236b594af

View File

@@ -163,7 +163,10 @@ describe('FEPs', () => {
cc: [`${nconf.get('url')}/category/${cid}`],
});
pid = id;
console.log('note passed to mocks.create', note);
({ activity } = await helpers.mocks.create(note));
console.log('activity passed to inbox.create', activity);
await activitypub.inbox.create({ body: activity });
const activities = Array.from(activitypub._sent);