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:
Marie 2023-12-27 09:44:45 +01:00
commit eea1f14a02

View file

@ -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);
});