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 5bb11d7 + 2c0bee7 commit b35a9beCopy full SHA for b35a9be
06_repeatString/repeatString.spec.js
@@ -7,7 +7,7 @@ describe('repeatString', () => {
7
test.skip('repeats the string many times', () => {
8
expect(repeatString('hello', 10)).toEqual('hellohellohellohellohellohellohellohellohellohello');
9
});
10
- test.skip('repeats the string 1 times', () => {
+ test.skip('repeats the string 1 time', () => {
11
expect(repeatString('hi', 1)).toEqual('hi');
12
13
test.skip('repeats the string 0 times', () => {
0 commit comments