We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0da5ad2 + 2861e62 commit e10d52cCopy full SHA for e10d52c
02_repeatString/repeatString.spec.js
@@ -29,7 +29,7 @@ describe('repeatString', () => {
29
/*The .match(/((hey))/g).length is a regex that will count the number of heys
30
in the result, which if your function works correctly will equal the number that
31
was randomly generated. */
32
- expect(repeatString('odin', number).match(/((odin))/g).length).toEqual(number);
+ expect(repeatString('hey', number).match(/((hey))/g).length).toEqual(number);
33
});
34
test.skip('works with blank strings', () => {
35
expect(repeatString('', 10)).toEqual('');
0 commit comments