From 7a8bbcdee4d74fe462eed2897c52e409ae493d72 Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Thu, 16 Jul 2020 08:58:04 +0300 Subject: [PATCH] Passed 1 time repeat --- 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 d2e3daa..f759168 100644 --- a/repeatString/repeatString.spec.js +++ b/repeatString/repeatString.spec.js @@ -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() {