We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0033f3 commit db2405cCopy full SHA for db2405c
1 file changed
exercises/practice/reverse-string/reverse-string.spec.js
@@ -44,6 +44,9 @@ describe('ReverseString', () => {
44
expect(actual).toEqual(expected);
45
});
46
47
+ // The following test cases deal with complex characters.
48
+ // You can optionally enable these tests by removing `.skip` from the test.
49
+
50
test.skip('grapheme cluster with pre-combined form', () => {
51
const expected = 'dnatsnehctsrüW';
52
const actual = reverseString('Würstchenstand');
0 commit comments