This commit is contained in:
syuilo 2019-07-02 20:08:30 +09:00
parent f4445c11ec
commit eb564f4987

View file

@ -844,11 +844,11 @@ describe('MFM', () => {
}); });
it('ignore parent []', () => { it('ignore parent []', () => {
const tokens = parse('[https://example.com/foo]'); const tokens = parse('foo [https://example.com/foo] bar');
assert.deepStrictEqual(tokens, [ assert.deepStrictEqual(tokens, [
text('['), text('foo ['),
leaf('url', { url: 'https://example.com/foo' }), leaf('url', { url: 'https://example.com/foo' }),
text(']') text('] bar')
]); ]);
}); });