update test

This commit is contained in:
marihachi 2021-03-28 21:25:34 +09:00
parent 861b57b51d
commit 39107c9c05

View file

@ -461,21 +461,23 @@ after`;
assert.deepStrictEqual(parse(input), output); assert.deepStrictEqual(parse(input), output);
}); });
it('toString', () => { describe('toString API', () => {
const input = it('basic', () => {
`before const input =
<center> `before
Hello [tada everynyan! 🎉] <center>
Hello [tada everynyan! 🎉]
I'm @ai, A bot of misskey! I'm @ai, A bot of misskey!
https://github.com/syuilo/ai https://github.com/syuilo/ai
</center> </center>
after`; after`;
assert.strictEqual(toString(parse(input)), input); assert.strictEqual(toString(parse(input)), input);
});
}); });
describe('inspect', () => { describe('inspect API', () => {
it('replace text', () => { it('replace text', () => {
const input = 'good morning [tada everynyan!]'; const input = 'good morning [tada everynyan!]';
const result = parse(input); const result = parse(input);