Skip to content

Commit

Permalink
add skipped test for support for unicode surrogate pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Mar 11, 2016
1 parent 36535e1 commit 970e1a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,7 @@ test('takes into account line returns inside input', t => {
test.skip('supports fullwidth characters', t => {
t.is(fn('안녕하세', 4, {hard: true}), '안녕\n하세');
});

test.skip('supports unicode surrogate pairs', t => {
t.is(fn('a\ud83c\ude00bc', 2, {hard: true}), 'a\n\ud83c\ude00\nbc');
});

0 comments on commit 970e1a7

Please sign in to comment.