Fix tests

This commit is contained in:
Acid Chicken (硫酸鶏) 2019-05-12 22:12:52 +09:00
parent 2b3c11d8d9
commit c45b08d967
No known key found for this signature in database
GPG key ID: 5388F56C75B677A1

View file

@ -5,7 +5,7 @@ import { parse } from '../src/mfm/parse';
describe('Extract mentions', () => {
it('simple', () => {
const ast = parse('@foo @bar @baz');
const ast = parse('@foo @bar @baz') || [];
const mentions = extractMentions(ast);
assert.deepStrictEqual(mentions, [{
username: 'foo',
@ -26,7 +26,7 @@ describe('Extract mentions', () => {
});
it('nested', () => {
const ast = parse('@foo **@bar** @baz');
const ast = parse('@foo **@bar** @baz') || [];
const mentions = extractMentions(ast);
assert.deepStrictEqual(mentions, [{
username: 'foo',