fix test?

This commit is contained in:
riku6460 2023-10-10 23:38:21 +09:00
parent 1f8d2b32c1
commit 0b6e36ffbd
No known key found for this signature in database
GPG Key ID: 27414FA27DB94CF6
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ describe('Timelines', () => {
assert.strictEqual(res.body.some((note: any) => note.id === bobNote2.id), true);
assert.strictEqual(res.body.some((note: any) => note.id === carolNote1.id), false);
assert.strictEqual(res.body.some((note: any) => note.id === carolNote2.id), false);
}, 1000 * 30);
}, 1000 * 60);
test.concurrent('フォローしているユーザーのチャンネル投稿が含まれない', async () => {
const [alice, bob] = await Promise.all([signup(), signup()]);