From: Jesse Tane Date: Mon, 6 Jan 2014 15:44:15 +0000 (-0500) Subject: surrogate pair tests: use escape sequences X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=47d14dbad573ad98795b55fefe3bea273f482494;p=buffer.git surrogate pair tests: use escape sequences --- diff --git a/test/buffer.js b/test/buffer.js index 1b0ec7d..9a906c8 100644 --- a/test/buffer.js +++ b/test/buffer.js @@ -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)