File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ http://exercism.io/languages/javascript
99
1010Execute the tests with:
1111
12- jasmine .
12+ jasmine <exercise-name>.spec.js
13+
14+ Replace ` <exercise-name> ` with the name of the current exercise. E.g., to
15+ test the Hello World exercise:
16+
17+ jasmine hello-world.spec.js
1318
1419In many test suites all but the first test have been skipped.
1520
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ This is the first test:
2424
2525Run the test now, with the following command on the command-line:
2626
27- jasmine .
27+ jasmine hello-world.spec.js
2828
2929The test fails, which makes sense since you've not written any code yet.
3030
@@ -76,7 +76,7 @@ Try changing the function in hello-world.js so that it says
7676
7777Then run the tests again from the command-line:
7878
79- jasmine .
79+ jasmine hello-world.spec.js
8080
8181Notice how it changes the failure message.
8282
You can’t perform that action at this time.
0 commit comments