diff --git a/test/mfm.ts b/test/mfm.ts
index 2124f592fe..8eadfc7288 100644
--- a/test/mfm.ts
+++ b/test/mfm.ts
@@ -901,6 +901,13 @@ describe('MFM', () => {
 					text('【foo】bar【baz】')
 				]);
 			});
+
+			it('disallow linebreak in title', () => {
+				const tokens = analyze('【foo\nbar】');
+				assert.deepStrictEqual(tokens, [
+					text('【foo\nbar】')
+				]);
+			});
 		});
 
 		describe('center', () => {