We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0e0e5 commit 09806f1Copy full SHA for 09806f1
02_repeatString/repeatString.spec.js
@@ -28,7 +28,7 @@ describe('repeatString', () => {
28
const number = Math.floor(Math.random() * 1000)
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 randomaly generated. */
+ was randomly generated. */
32
expect(repeatString('hey', number).match(/((hey))/g).length).toEqual(number);
33
});
34
test.skip('works with blank strings', () => {
0 commit comments