diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/mfm.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/mfm.ts b/test/mfm.ts index 7db94b45e1..fa46c3ff0e 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -550,6 +550,14 @@ describe('MFM', () => { ]); }); + it('ignore square brackets', () => { + const tokens = parse('#foo]'); + assert.deepStrictEqual(tokens, [ + leaf('hashtag', { hashtag: 'foo' }), + text(']'), + ]); + }); + it('allow including number', () => { const tokens = parse('#foo123'); assert.deepStrictEqual(tokens, [ |