mirror of
https://activitypub.software/TransFem-org/sfm-js
synced 2024-11-21 21:55:09 +00:00
Add inlineCode tests
This commit is contained in:
parent
916ee3e012
commit
5e7f17427b
1 changed files with 20 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
import assert from 'assert';
|
||||
import * as mfm from '../built/index';
|
||||
import {
|
||||
TEXT, CENTER, FN, UNI_EMOJI, MENTION, EMOJI_CODE, HASHTAG, N_URL, BOLD, SMALL, ITALIC, STRIKE, QUOTE, MATH_BLOCK, SEARCH, CODE_BLOCK, LINK
|
||||
TEXT, CENTER, FN, UNI_EMOJI, MENTION, EMOJI_CODE, HASHTAG, N_URL, BOLD, SMALL, ITALIC, STRIKE, QUOTE, MATH_BLOCK, SEARCH, CODE_BLOCK, LINK, INLINE_CODE
|
||||
} from '../built/index';
|
||||
|
||||
describe('PlainParser', () => {
|
||||
|
@ -506,7 +506,25 @@ describe('FullParser', () => {
|
|||
|
||||
// strike
|
||||
|
||||
// inlineCode
|
||||
describe('inlineCode', () => {
|
||||
it('basic', () => {
|
||||
const input = '`var x = "Strawberry Pasta";`';
|
||||
const output = [INLINE_CODE('var x = "Strawberry Pasta";')];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
|
||||
it('disallow line break', () => {
|
||||
const input = '`foo\nbar`';
|
||||
const output = [TEXT('`foo\nbar`')];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
|
||||
it('disallow ´', () => {
|
||||
const input = '`foo´bar`';
|
||||
const output = [TEXT('`foo´bar`')];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
});
|
||||
|
||||
// mathInline
|
||||
|
||||
|
|
Loading…
Reference in a new issue