mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 19:05:31 +00:00
fix(core): update escaping per review comment 🙀
- escape an emoji in source code #7569
This commit is contained in:
parent
30865fbb1b
commit
2b3cedd5d4
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ describe('keys', function () {
|
|||
assert.isNotNull(keys);
|
||||
assert.equal(compilerTestCallbacks.messages.length, 0);
|
||||
assert.equal(keys.keys.length, 1);
|
||||
assert.equal(keys.keys[0].to.value, '🪦');
|
||||
assert.equal(keys.keys[0].to.value, String.fromCodePoint(0x1faa6));
|
||||
});
|
||||
|
||||
it('should compile a hardware layer', function() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue