Skip keysyms.fromUnicode UCS-4 test
The browser requirements are too high for codePointAt at the moment
This commit is contained in:
parent
e9ddbec5b1
commit
331ae15317
|
@ -42,7 +42,8 @@ describe('Helpers', function() {
|
|||
expect(keysyms.fromUnicode('\n'.charCodeAt())).to.have.property('keysym', 0x100000a);
|
||||
expect(keysyms.fromUnicode('\u262D'.charCodeAt())).to.have.property('keysym', 0x100262d);
|
||||
});
|
||||
it('should map UCS-4 codepoints to the Unicode range', function() {
|
||||
// This requires very recent versions of most browsers... skipping for now
|
||||
it.skip('should map UCS-4 codepoints to the Unicode range', function() {
|
||||
expect(keysyms.fromUnicode('\u{1F686}'.codePointAt())).to.have.property('keysym', 0x101f686);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue