From b3038bccd036f1d00e2a8676643ea79bfc15da77 Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Thu, 2 Jul 2020 09:35:12 +0300 Subject: [PATCH] passed repeat the string 0 times --- repeatString/repeatString.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repeatString/repeatString.spec.js b/repeatString/repeatString.spec.js index f759168..20bff3f 100644 --- a/repeatString/repeatString.spec.js +++ b/repeatString/repeatString.spec.js @@ -10,7 +10,7 @@ describe('repeatString', function() { it('repeats the string 1 times', function() { 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(''); }); xit('returns ERROR with negative numbers', function() {