From 5c1853e1e98e444d7a3ff9124b0ae2b28a383c5d Mon Sep 17 00:00:00 2001 From: samanyu <70210929+Sama-004@users.noreply.github.com> Date: Wed, 28 Jun 2023 08:43:15 +0530 Subject: [PATCH 1/2] Updated README.md to add unskipping the skipped test cases Just like it was mentioned in the previous exercise to remove the .skip from test.skip() in the spec.js file. --- 03_reverseString/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/03_reverseString/README.md b/03_reverseString/README.md index 692d755..fe1fac7 100644 --- a/03_reverseString/README.md +++ b/03_reverseString/README.md @@ -6,5 +6,8 @@ Pretty simple, write a function called `reverseString` that returns its input, r reverseString('hello there') // returns 'ereht olleh' ``` +You will notice in this exercise that there are multiple tests (see in file reverseString.spec.js). Only the first test is currently enabled. So after making sure that this first one passes, enable the others one by one by deleting the .skip from the test.skip() function. + + ## Hints 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. From f98ee210e0697a912796428961cee837c25fc84c Mon Sep 17 00:00:00 2001 From: samanyu <70210929+Sama-004@users.noreply.github.com> Date: Wed, 28 Jun 2023 17:34:00 +0530 Subject: [PATCH 2/2] Made the file name sentence more readable Made changes according to the review, made the file name more readable and some minor grammatical changes. --- 03_reverseString/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_reverseString/README.md b/03_reverseString/README.md index fe1fac7..036592f 100644 --- a/03_reverseString/README.md +++ b/03_reverseString/README.md @@ -6,7 +6,7 @@ Pretty simple, write a function called `reverseString` that returns its input, r reverseString('hello there') // returns 'ereht olleh' ``` -You will notice in this exercise that there are multiple tests (see in file reverseString.spec.js). Only the first test is currently enabled. So after making sure that this first one passes, enable the others one by one by deleting the .skip from the test.skip() function. +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. ## Hints