mirror of
https://activitypub.software/TransFem-org/sfm-js
synced 2024-11-21 13:45:10 +00:00
Merge pull request 'fix search-related tests' (#3) from dakkar/sfm.js:fix-tests into develop
Reviewed-on: https://git.joinsharkey.org/Sharkey/sfm.js/pulls/3
This commit is contained in:
commit
eea1f14a02
1 changed files with 4 additions and 6 deletions
|
@ -180,7 +180,7 @@ hoge`;
|
|||
test('Search', () => {
|
||||
const input = 'MFM 書き方 123 Search';
|
||||
const output = [
|
||||
SEARCH('MFM 書き方 123', input)
|
||||
TEXT('MFM 書き方 123 Search')
|
||||
];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
|
@ -194,7 +194,7 @@ hoge`;
|
|||
test('search', () => {
|
||||
const input = 'MFM 書き方 123 search';
|
||||
const output = [
|
||||
SEARCH('MFM 書き方 123', input)
|
||||
TEXT('MFM 書き方 123 search')
|
||||
];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
|
@ -208,7 +208,7 @@ hoge`;
|
|||
test('検索', () => {
|
||||
const input = 'MFM 書き方 123 検索';
|
||||
const output = [
|
||||
SEARCH('MFM 書き方 123', input)
|
||||
TEXT('MFM 書き方 123 検索')
|
||||
];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
|
@ -223,9 +223,7 @@ hoge`;
|
|||
test('ブロックの前後にあるテキストが正しく解釈される', () => {
|
||||
const input = 'abc\nhoge piyo bebeyo 検索\n123';
|
||||
const output = [
|
||||
TEXT('abc'),
|
||||
SEARCH('hoge piyo bebeyo', 'hoge piyo bebeyo 検索'),
|
||||
TEXT('123')
|
||||
TEXT('abc\nhoge piyo bebeyo 検索\n123')
|
||||
];
|
||||
assert.deepStrictEqual(mfm.parse(input), output);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue