diff --git a/packages/backend/test/unit/misc/is-renote.ts b/packages/backend/test/unit/misc/is-renote.ts index 4da00bcf25..1baa995f59 100644 --- a/packages/backend/test/unit/misc/is-renote.ts +++ b/packages/backend/test/unit/misc/is-renote.ts @@ -89,20 +89,19 @@ describe('misc:is-renote', () => { describe('isPureRenote', () => { it('should return true when note is pure renote', () => { - const note = new MiNote({ renoteId: 'abc123' }); + const note = new MiNote({ renoteId: 'abc123', fileIds: [] }); const result = isPureRenote(note); expect(result).toBeTruthy(); }); it('should return false when note is quote', () => { - const note = new MiNote({ renoteId: 'abc123', text: 'text' }); + const note = new MiNote({ renoteId: 'abc123', text: 'text', fileIds: [] }); const result = isPureRenote(note); expect(result).toBeFalsy(); - }); it('should return false when note is not renote', () => { - const note = new MiNote({ renoteId: null }); + const note = new MiNote({ renoteId: null, fileIds: [] }); const result = isPureRenote(note); expect(result).toBeFalsy(); });