fix nyaize test
This commit is contained in:
parent
02d36c4518
commit
2ecaa57cd5
1 changed files with 6 additions and 7 deletions
36
packages/misskey-js/test/nyaize.test.ts
Normal file
36
packages/misskey-js/test/nyaize.test.ts
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: dakkar and other Sharkey contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { nyaize } from '../src/nyaize.js';
|
||||
|
||||
function runTests(cases) {
|
||||
for (const c of cases) {
|
||||
const [input,expected] = c;
|
||||
const got = nyaize(input);
|
||||
expect(got).toEqual(expected);
|
||||
}
|
||||
}
|
||||
|
||||
describe('nyaize', () => {
|
||||
test('ja-JP', () => {
|
||||
runTests([
|
||||
['きれいな','きれいにゃ'],
|
||||
['ナナナ', 'ニャニャニャ'],
|
||||
['ナナ','ニャニャ'],
|
||||
]);
|
||||
});
|
||||
test('en-US', () => {
|
||||
runTests([
|
||||
['bar','bar'],
|
||||
['banana','banyanya'],
|
||||
['booting','booting'],
|
||||
['morning','mornyan'],
|
||||
['mmmorning','mmmornyan'],
|
||||
['someone','someone'],
|
||||
['everyone','everynyan'],
|
||||
['foreveryone','foreverynyan'],
|
||||
]);
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue