mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
[Test] Better tests
This commit is contained in:
parent
3a041ba718
commit
76c80bd84d
13
test/mfm.ts
13
test/mfm.ts
@ -255,7 +255,18 @@ describe('MFM', () => {
|
||||
});
|
||||
|
||||
describe('spin', () => {
|
||||
it('simple', () => {
|
||||
it('text', () => {
|
||||
const tokens = parse('<spin>foo</spin>');
|
||||
assert.deepStrictEqual(tokens, [
|
||||
tree('spin', [
|
||||
text('foo')
|
||||
], {
|
||||
attr: null
|
||||
}),
|
||||
]);
|
||||
});
|
||||
|
||||
it('emoji', () => {
|
||||
const tokens = parse('<spin>:foo:</spin>');
|
||||
assert.deepStrictEqual(tokens, [
|
||||
tree('spin', [
|
||||
|
Loading…
Reference in New Issue
Block a user