Skip to content

Commit 130d0ad

Browse files
committedMay 9, 2017
Add failing test for #6
1 parent 7dd3956 commit 130d0ad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎test.js

+4
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ test('ignores control characters', t => {
2020
t.is(m(String.fromCharCode(159)), 0);
2121
t.is(m('\u001b'), 0);
2222
});
23+
24+
test.failing('handles combining characters', t => {
25+
t.is(m('x\u0300'), 1);
26+
});

0 commit comments

Comments
 (0)
Please sign in to comment.