Skip to content

Commit

Permalink
Upgrade 'unicode-emoji-json' to '0.4.0' (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: James Sumners <[email protected]>
  • Loading branch information
graysoncash and jsumners committed Jul 23, 2023
1 parent 7ed54f9 commit c1d9e9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.2.0",
"unicode-emoji-json": "^0.3.1",
"unicode-emoji-json": "^0.5.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
Expand Down
3 changes: 2 additions & 1 deletion test/search.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,5 +198,6 @@ test('enables ctrl-modifier', (t) => {
test('pads codepoint with zeroes if needed', (t) => {
t.plan(1)
const found = search('5')
t.ok(found.items[0].mods.ctrl.arg === 'U+0035')
const unicodes = found.items.map((item) => item.mods.ctrl.arg)
t.ok(unicodes.includes('U+0035'))
})

0 comments on commit c1d9e9f

Please sign in to comment.