tracks/javascript/exercises/wordy/README.md in trackler-2.2.1.94 vs tracks/javascript/exercises/wordy/README.md in trackler-2.2.1.95
- old
+ new
@@ -1,21 +1,19 @@
# Wordy
Parse and evaluate simple math word problems returning the answer as an integer.
-
## Iteration 1 — Addition
Add two numbers together.
> What is 5 plus 13?
Evaluates to 18.
Handle large numbers and negative numbers.
-
## Iteration 2 — Subtraction, Multiplication and Division
Now, perform the other three operations.
> What is 7 minus 5?
@@ -28,11 +26,10 @@
> What is 25 divided by 5?
5
-
## Iteration 3 — Multiple Operations
Handle a set of operations, in sequence.
Since these are verbal word problems, evaluate the expression from
@@ -44,41 +41,42 @@
> What is 3 plus 2 multiplied by 3?
15 (i.e. not 9)
-
## Bonus — Exponentials
If you'd like, handle exponentials.
> What is 2 raised to the 5th power?
32
-
## Setup
-Go through the setup instructions for JavaScript to
-install the necessary dependencies:
+Go through the setup instructions for JavaScript to install the
+ necessary dependencies:
http://exercism.io/languages/javascript/installation
-## Making the Test Suite Pass
+## Running the test suite
-Execute the tests with:
+The provided test suite uses [Jasmine](https://jasmine.github.io/).
+You can install it by opening a terminal window and running the
+following command:
- jasmine <exercise-name>.spec.js
+```sh
+npm install -g jasmine
+```
-Replace `<exercise-name>` with the name of the current exercise. E.g., to
-test the Hello World exercise:
+Run the test suite from the exercise directory with:
- jasmine hello-world.spec.js
+```sh
+jasmine wordy.spec.js
+```
-In many test suites all but the first test have been skipped.
-
-Once you get a test passing, you can unskip 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`.
## Source
Inspired by one of the generated questions in the Extreme Startup game. [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup)