mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 15:40:57 -07:00
Revert "Fix test fails"
This reverts commit b9b05a74017c37ae23986c005deac0a3465d497c.
This commit is contained in:
parent
a81494a8bf
commit
ecc3f412d1
1 changed files with 4 additions and 4 deletions
|
@ -182,14 +182,14 @@ describe('Text', () => {
|
|||
it('emoji', () => {
|
||||
const tokens1 = analyze(':cat:');
|
||||
assert.deepEqual([
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
|
||||
{ type: 'emoji', content: ':cat:', name: 'cat'}
|
||||
], tokens1);
|
||||
|
||||
const tokens2 = analyze(':cat::cat::cat:');
|
||||
assert.deepEqual([
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
|
||||
{ type: 'emoji', content: ':cat:', name: 'cat'},
|
||||
{ type: 'emoji', content: ':cat:', name: 'cat'},
|
||||
{ type: 'emoji', content: ':cat:', name: 'cat'}
|
||||
], tokens2);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue