Passed works with blank strings
This commit is contained in:
parent
cc3e1d116b
commit
fa2245bb8b
|
@ -27,7 +27,7 @@ describe('repeatString', function() {
|
|||
was randomaly generated. */
|
||||
expect(repeatString('hey', number).match(/((hey))/g).length).toEqual(number);
|
||||
});
|
||||
xit('works with blank strings', function() {
|
||||
it('works with blank strings', function() {
|
||||
expect(repeatString('', 10)).toEqual('');
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue