fix(core): update escaping per review comment 🙀

- escape an emoji in source code

#7569
This commit is contained in:
Steven R. Loomis 2023-01-26 13:13:36 -06:00
parent 30865fbb1b
commit 2b3cedd5d4

View file

@ -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() {