]> zoso.dev Git - buffer.git/commitdiff
surrogate pair tests: use escape sequences
authorJesse Tane <jesse.tane@gmail.com>
Mon, 6 Jan 2014 15:44:15 +0000 (10:44 -0500)
committerJesse Tane <jesse.tane@gmail.com>
Mon, 6 Jan 2014 15:44:15 +0000 (10:44 -0500)
test/buffer.js

index 1b0ec7df722d9229b5f1354009c0f4c29dc048ae..9a906c8fd250f33bc6b3ee59741963a3e326f4be 100644 (file)
@@ -264,7 +264,7 @@ test('base64 strings without padding', function (t) {
 
 test('detect utf16 surrogate pairs', function(t) {
   t.plan(1)
-  var text = 'í ½í¸¸í ½í²­í ½í±'
+  var text = '\uD83D\uDE38' + '\uD83D\uDCAD' + '\uD83D\uDC4D'
   var buf = new B(text)
   t.equal(text, buf.toString())
   t.end()
@@ -272,7 +272,7 @@ test('detect utf16 surrogate pairs', function(t) {
 
 test('throw on orphaned utf16 surrogate lead code point', function(t) {
   t.plan(1)
-  var text = 'í ½í ½í²­í ½í±'
+  var text = '\uD83D\uDE38' + '\uD83D' + '\uD83D\uDC4D'
   var err
   try {
     var buf = new B(text)
@@ -285,7 +285,7 @@ test('throw on orphaned utf16 surrogate lead code point', function(t) {
 
 test('throw on orphaned utf16 surrogate trail code point', function(t) {
   t.plan(1)
-  var text = '😸💭í±'
+  var text = '\uD83D\uDE38' + '\uDCAD' + '\uD83D\uDC4D'
   var err
   try {
     var buf = new B(text)