Update timeline.ts
This commit is contained in:
parent
d40f35b3ad
commit
55e5056216
|
@ -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: リノートミュート済みユーザーのテスト
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue