misskey/test/extract-mentions.ts
syuilo 1f4ae2f63a
Use mfm-js for MFM parsing (#7415)
* wip

* Update mfm.ts

* wip

* update mfmjs

* refactor

* nanka

* Update mfm.ts

* Update to-html.ts

* Update to-html.ts

* wip

* fix test

* fix test
2021-04-02 10:36:11 +09:00

43 lines
814 B
TypeScript

import * as assert from 'assert';
import extractMentions from '../src/misc/extract-mentions';
import { parse } from 'mfm-js';
describe('Extract mentions', () => {
it('simple', () => {
const ast = parse('@foo @bar @baz')!;
const mentions = extractMentions(ast);
assert.deepStrictEqual(mentions, [{
username: 'foo',
acct: '@foo',
host: null
}, {
username: 'bar',
acct: '@bar',
host: null
}, {
username: 'baz',
acct: '@baz',
host: null
}]);
});
it('nested', () => {
const ast = parse('@foo **@bar** @baz')!;
const mentions = extractMentions(ast);
assert.deepStrictEqual(mentions, [{
username: 'foo',
acct: '@foo',
host: null
}, {
username: 'bar',
acct: '@bar',
host: null
}, {
username: 'baz',
acct: '@baz',
host: null
}]);
});
});