Passed 0 times

This commit is contained in:
Mohammed Nabeel 2020-07-16 08:59:13 +03:00
parent 7a8bbcdee4
commit 1149e755e5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ describe('repeatString', function() {
it('repeats the string 1 times', function() { it('repeats the string 1 times', function() {
expect(repeatString('hey', 1)).toEqual('hey'); expect(repeatString('hey', 1)).toEqual('hey');
}); });
xit('repeats the string 0 times', function() { it('repeats the string 0 times', function() {
expect(repeatString('hey', 0)).toEqual(''); expect(repeatString('hey', 0)).toEqual('');
}); });
xit('returns ERROR with negative numbers', function() { xit('returns ERROR with negative numbers', function() {