diff --git a/packages/backend/test/e2e/timeline.ts b/packages/backend/test/e2e/timeline.ts
index 06e2b10b89..02d212afc3 100644
--- a/packages/backend/test/e2e/timeline.ts
+++ b/packages/backend/test/e2e/timeline.ts
@@ -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: リノートミュート済みユーザーのテスト
 });