From fa687ecb3387799c2d95af526b48ffe91616659b Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Sat, 12 Oct 2024 15:51:45 -0400 Subject: [PATCH] fix is-renote tests --- packages/backend/test/unit/misc/is-renote.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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(); });