Skip to content

Commit

Permalink
add skipped test for support for fullwidth characters
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Mar 11, 2016
1 parent 58415e3 commit 36535e1
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 @@ -68,3 +68,7 @@ test('takes into account line returns inside input', t => {
const res20 = fn(fixture2, 10, {hard: true});
t.is(res20, '12345678\n9012345678\n90');
});

test.skip('supports fullwidth characters', t => {
t.is(fn('안녕하세', 4, {hard: true}), '안녕\n하세');
});

0 comments on commit 36535e1

Please sign in to comment.