wip: fix test error

This commit is contained in:
GrapeApple0 2024-07-23 10:24:38 +00:00
parent 0522520fdd
commit eb4a617713
1 changed files with 13 additions and 14 deletions

View File

@ -386,7 +386,8 @@ describe('ActivityPub', () => {
}); });
}); });
describe('Update', async () => { describe('Update', () => {
test('Update note', async () => {
const actor = createRandomActor(); const actor = createRandomActor();
const post = { const post = {
@ -399,8 +400,6 @@ describe('ActivityPub', () => {
}; };
const note = await noteService.createNote(post.id, resolver, true); const note = await noteService.createNote(post.id, resolver, true);
test('Update note', async () => {
rendererService.renderNoteUpdate(await rendererService.renderNote(note!, false, true), note!, actor); rendererService.renderNoteUpdate(await rendererService.renderNote(note!, false, true), note!, actor);
}); });
}); });