From 4fdb0ad83c0f275b10b25545c9961f3afabf777a Mon Sep 17 00:00:00 2001 From: Maheshkumar Date: Sun, 19 Dec 2021 07:54:49 +0530 Subject: [PATCH] Update repeatString to take alternative strings in tests --- 02_repeatString/repeatString.spec.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/02_repeatString/repeatString.spec.js b/02_repeatString/repeatString.spec.js index 1bcee3c..10a34df 100644 --- a/02_repeatString/repeatString.spec.js +++ b/02_repeatString/repeatString.spec.js @@ -2,19 +2,19 @@ const repeatString = require('./repeatString') describe('repeatString', () => { test('repeats the string', () => { - expect(repeatString('hey', 3)).toEqual('heyheyhey'); + expect(repeatString('odin', 3)).toEqual('odinodinodin'); }); test.skip('repeats the string many times', () => { - expect(repeatString('hey', 10)).toEqual('heyheyheyheyheyheyheyheyheyhey'); + expect(repeatString('help', 10)).toEqual('helphelphelphelphelphelphelphelphelphelp'); }); test.skip('repeats the string 1 times', () => { - expect(repeatString('hey', 1)).toEqual('hey'); + expect(repeatString('question', 1)).toEqual('question'); }); test.skip('repeats the string 0 times', () => { - expect(repeatString('hey', 0)).toEqual(''); + expect(repeatString('debug', 0)).toEqual(''); }); test.skip('returns ERROR with negative numbers', () => { - expect(repeatString('hey', -1)).toEqual('ERROR'); + expect(repeatString('time', -1)).toEqual('ERROR'); }); test.skip('repeats the string a random amount of times', function () { /*The number is generated by using Math.random to get a value from between @@ -29,7 +29,7 @@ describe('repeatString', () => { /*The .match(/((hey))/g).length is a regex that will count the number of heys in the result, which if your function works correctly will equal the number that was randomaly generated. */ - expect(repeatString('hey', number).match(/((hey))/g).length).toEqual(number); + expect(repeatString('data', number).match(/((data))/g).length).toEqual(number); }); test.skip('works with blank strings', () => { expect(repeatString('', 10)).toEqual('');