Skip to content

Commit 29d2454

Browse files
chore: add fullOptions to Emoji benchmark fixtures (#39035)
1 parent b1925d6 commit 29d2454

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/message-parser/benchmarks/parser.bench.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ const categories: BenchCategory[] = [
7777
{
7878
name: 'Emoji',
7979
fixtures: [
80-
{ name: 'single shortcode', input: ':smile:' },
81-
{ name: 'triple shortcode (BigEmoji)', input: ':smile::heart::rocket:' },
82-
{ name: 'single unicode', input: '😀' },
83-
{ name: 'triple unicode (BigEmoji)', input: '😀🚀🌈' },
84-
{ name: 'in text', input: 'Hello :smile: world :heart: test :rocket: done' },
85-
{ name: 'mixed', input: 'Great job :thumbsup: 🎉 keep going :rocket:' },
80+
{ name: 'single shortcode', input: ':smile:', options: fullOptions },
81+
{ name: 'triple shortcode (BigEmoji)', input: ':smile::heart::rocket:', options: fullOptions },
82+
{ name: 'single unicode', input: '😀', options: fullOptions },
83+
{ name: 'triple unicode (BigEmoji)', input: '😀🚀🌈', options: fullOptions },
84+
{ name: 'in text', input: 'Hello :smile: world :heart: test :rocket: done', options: fullOptions },
85+
{ name: 'mixed', input: 'Great job :thumbsup: 🎉 keep going :rocket:', options: fullOptions },
8686
],
8787
},
8888
{

0 commit comments

Comments
 (0)