Skip to content

Commit

Permalink
update coveralls badge
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed May 18, 2016
1 parent e91fef0 commit ed517e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# wrap-ansi [![Build Status](https://travis-ci.org/chalk/wrap-ansi.svg?branch=master)](https://travis-ci.org/chalk/wrap-ansi) [![Coverage Status](https://coveralls.io/repos/chalk/wrap-ansi/badge.svg?branch=master&service=github)](https://coveralls.io/github/chalk/wrap-ansi?branch=master)
# wrap-ansi [![Build Status](https://travis-ci.org/chalk/wrap-ansi.svg?branch=master)](https://travis-ci.org/chalk/wrap-ansi) [![Coverage Status](https://coveralls.io/repos/github/chalk/wrap-ansi/badge.svg?branch=master)](https://coveralls.io/github/chalk/wrap-ansi?branch=master)

> Wordwrap a string with [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles)
Expand Down
5 changes: 3 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,11 @@ test('takes into account line returns inside input', t => {
t.is(res20, '12345678\n9012345678\n90');
});

test.skip('supports fullwidth characters', t => {
// TOOD: use `test.failing` for these when AVA 0.15.0 is out
test.skip('supports fullwidth characters', t => { // eslint-disable-line
t.is(fn('안녕하세', 4, {hard: true}), '안녕\n하세');
});

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

0 comments on commit ed517e9

Please sign in to comment.