8000
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 3758497 commit 5817ea2Copy full SHA for 5817ea2
repeatString/repeatString.spec.js
@@ -27,4 +27,7 @@ describe('repeatString', function() {
27
was randomaly generated. */
28
expect(repeatString('hey', number).match(/((hey))/g).length).toEqual(number);
29
});
30
+ xit('works with blank strings', function() {
31
+ expect(repeatString('', 10)).toEqual('');
32
+ });
33
0 commit comments