diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/mfm.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/mfm.ts b/test/mfm.ts index 44e7d6904e..e9253ebc43 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -883,6 +883,15 @@ describe('MFM', () => { }); describe('italic', () => { + it('<i>', () => { + const tokens = analyze('<i>foo</i>'); + assert.deepStrictEqual(tokens, [ + tree('italic', [ + text('foo') + ], {}), + ]); + }); + it('underscore', () => { const tokens = analyze('_foo_'); assert.deepStrictEqual(tokens, [ |