From 9916e343a3a8474240b0954e3434e9440b8f5f93 Mon Sep 17 00:00:00 2001 From: Michael Frank Date: Mon, 10 May 2021 16:20:47 +1200 Subject: [PATCH] repeatString/README.md: Rewrite hints to refer to Jest "skipped" tests. --- repeatString/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/repeatString/README.md b/repeatString/README.md index 4e56070..4c051d1 100644 --- a/repeatString/README.md +++ b/repeatString/README.md @@ -15,4 +15,11 @@ You will notice in this exercise that there are multiple tests (see in file `rep - Create a variable to hold the string you're going to return, create a loop that repeats the given number of times and add the given string to the result on each loop. -- If running `jasmine repeatString.spec.js` raises `Temporarily disabled with test.skip` errors, make sure you have enabled the rest of the tests (see above). +- If running `npm test repeatString.spec.js` returns results similar to the below: + +``` +Test Suites: 1 passed, 1 total +Tests: 6 skipped, 1 passed, 7 total +``` + +- Make sure you have enabled the rest of the tests (see above).