Passed 1 time repeat

This commit is contained in:
Mohammed Nabeel 2020-07-16 08:58:04 +03:00
parent b6f3521313
commit 7a8bbcdee4
1 changed files with 1 additions and 1 deletions

View File

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