Passed works with blank strings

This commit is contained in:
Mohammed Nabeel 2020-07-16 09:09:24 +03:00
parent cc3e1d116b
commit fa2245bb8b
1 changed files with 1 additions and 1 deletions

View File

@ -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('');
});
});