passed repeats the string many times

This commit is contained in:
Mohammed Nabeel 2020-07-02 09:30:07 +03:00
parent f9b8d2d403
commit 8a9784a681
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ describe('repeatString', function() {
it('repeats the string', function() {
expect(repeatString('hey', 3)).toEqual('heyheyhey');
});
xit('repeats the string many times', function() {
it('repeats the string many times', function() {
expect(repeatString('hey', 10)).toEqual('heyheyheyheyheyheyheyheyheyhey');
});
xit('repeats the string 1 times', function() {