tracks/javascript/exercises/sublist/README.md in trackler-2.2.1.94 vs tracks/javascript/exercises/sublist/README.md in trackler-2.2.1.95
- old
+ new
@@ -17,34 +17,31 @@
* A = [1, 2, 3, 4, 5], B = [2, 3, 4], A is a superlist of B
* A = [1, 2, 4], B = [1, 2, 3, 4, 5], A is not a superlist of, sublist of or equal to B
## Setup
-Go through the setup instructions for ECMAScript to
-install the necessary dependencies:
+Go through the setup instructions for JavaScript to install the
+ necessary dependencies:
-http://exercism.io/languages/ecmascript
+http://exercism.io/languages/javascript/installation
-## Requirements
+## Running the test suite
-Install assignment dependencies:
+The provided test suite uses [Jasmine](https://jasmine.github.io/).
+You can install it by opening a terminal window and running the
+following command:
-```bash
-$ npm install -g jasmine
+```sh
+npm install -g jasmine
```
-## Making the test suite pass
+Run the test suite from the exercise directory with:
-Execute the tests with:
-
-```bash
-$ jasmine sublist.spec.js
+```sh
+jasmine sublist.spec.js
```
-In the test suites all tests but the first have been skipped.
-
-Once you get a test passing, you can enable the next one by
-changing `xit` to `it`.
-
+In many test suites all but the first test have been marked "pending".
+Once you get a test passing, activate the next one by changing `xit` to `it`.
## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.