Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 06_repeatString/repeatString.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('repeatString', () => {
test.skip('repeats the string many times', () => {
expect(repeatString('hello', 10)).toEqual('hellohellohellohellohellohellohellohellohellohello');
});
test.skip('repeats the string 1 times', () => {
test.skip('repeats the string 1 time', () => {
expect(repeatString('hi', 1)).toEqual('hi');
});
test.skip('repeats the string 0 times', () => {
Expand Down