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