Update timeline.ts

This commit is contained in:
syuilo 2023-10-02 21:34:02 +09:00 committed by GitHub
parent d40f35b3ad
commit 55e5056216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

View File

@ -233,6 +233,28 @@ describe('Renote Mute', () => {
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), false);
});
test('withRenotes: false なタイムラインにフォローしているユーザーの他人の投稿の引用が含まれる', async () => {
const [alice, bob, carol] = await Promise.all([signup(), signup(), signup()]);
await api('/following/create', {
userId: bob.id,
}, alice);
const carolNote = await post(carol, { text: 'hi' });
const bobNote = await post(bob, { text: 'hi', renoteId: carolNote.id });
// redisに追加されるのを待つ
await sleep(100);
const res = await api('/notes/timeline', {
withRenotes: false,
}, alice);
assert.strictEqual(res.status, 200);
assert.strictEqual(Array.isArray(res.body), true);
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), false);
});
// TODO: ミュート済みユーザーのテスト
// TODO: リノートミュート済みユーザーのテスト
});