Skip to content

Commit 2f77530

Browse files
authored
Remove duplicate "skipped test" instruction
Already instructed in exercise 03
1 parent 61c3de9 commit 2f77530

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

07_reverseString/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ Pretty simple, write a function called `reverseString` that returns its input, r
66
reverseString('hello there') // returns 'ereht olleh'
77
```
88

9-
You will notice in this exercise that there are multiple tests (in the file `reverseString.spec.js`). Currently, only the first test is enabled. After ensuring that the first test passes, enable the remaining tests one by one by removing the `.skip` from the `test.skip()` function.
10-
11-
129
## Hints
1310
Strings in JavaScript cannot be reversed directly so you're going to have to split it into something else first.. do the reversal and then join it back together into a string.

0 commit comments

Comments
 (0)