Add MFM test

This commit is contained in:
syuilo 2018-11-25 13:21:39 +09:00
parent 6d52a4b4dd
commit 38d4c0e9bb

View file

@ -449,6 +449,15 @@ describe('Text', () => {
], tokens);
});
it('simple (with silent flag)', () => {
const tokens = analyze('?[foo](https://example.com)');
assert.deepEqual([
nodeWithChildren('link', [
text('foo')
], { url: 'https://example.com', silent: true })
], tokens);
});
it('in text', () => {
const tokens = analyze('before[foo](https://example.com)after');
assert.deepEqual([