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 e18c7cf commit fab4560
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 @@ -42,3 +42,7 @@ test(t => {
test.skip('supports fullwidth characters', t => {
t.is(fn('안녕하세', 0, 4), '안녕');
});

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

0 comments on commit fab4560

Please sign in to comment.