Skip to content

Commit 6396243

Browse files
authored
fix: タイムアウトを起こすe2eテストの時間設定を延長 (misskey-dev#15283)
1 parent 6653233 commit 6396243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/test/e2e/timelines.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ describe('Timelines', () => {
397397
assert.strictEqual(res.body.some(note => note.id === bobNote2.id), true);
398398
assert.strictEqual(res.body.some(note => note.id === carolNote1.id), false);
399399
assert.strictEqual(res.body.some(note => note.id === carolNote2.id), false);
400-
}, 1000 * 10);
400+
}, 1000 * 15);
401401

402402
test.concurrent('フォローしているユーザーのチャンネル投稿が含まれない', async () => {
403403
const [alice, bob] = await Promise.all([signup(), signup()]);

0 commit comments

Comments
 (0)