From 8a9784a6818319c98971ab19a26ca5475c3c6968 Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Thu, 2 Jul 2020 09:30:07 +0300 Subject: [PATCH] passed repeats the string many 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 eb10dd3..d2e3daa 100644 --- a/repeatString/repeatString.spec.js +++ b/repeatString/repeatString.spec.js @@ -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() {