Revert "Fix tests"
This reverts commit c45b08d967864608f79a42cb21d3a8b603dfcb7e.
This commit is contained in:
parent
c45b08d967
commit
680b307eb5
@ -5,7 +5,7 @@ import { parse } from '../src/mfm/parse';
|
|||||||
|
|
||||||
describe('Extract mentions', () => {
|
describe('Extract mentions', () => {
|
||||||
it('simple', () => {
|
it('simple', () => {
|
||||||
const ast = parse('@foo @bar @baz') || [];
|
const ast = parse('@foo @bar @baz');
|
||||||
const mentions = extractMentions(ast);
|
const mentions = extractMentions(ast);
|
||||||
assert.deepStrictEqual(mentions, [{
|
assert.deepStrictEqual(mentions, [{
|
||||||
username: 'foo',
|
username: 'foo',
|
||||||
@ -26,7 +26,7 @@ describe('Extract mentions', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('nested', () => {
|
it('nested', () => {
|
||||||
const ast = parse('@foo **@bar** @baz') || [];
|
const ast = parse('@foo **@bar** @baz');
|
||||||
const mentions = extractMentions(ast);
|
const mentions = extractMentions(ast);
|
||||||
assert.deepStrictEqual(mentions, [{
|
assert.deepStrictEqual(mentions, [{
|
||||||
username: 'foo',
|
username: 'foo',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user