diff --git a/chapters/testing/testing_with_jasmine.md b/chapters/testing/testing_with_jasmine.md index 4dfffb9..9d77961 100644 --- a/chapters/testing/testing_with_jasmine.md +++ b/chapters/testing/testing_with_jasmine.md @@ -5,7 +5,7 @@ chapter: Testing --- ## Problem -You are writing a simple calculator using CoffeeScript and you want to verify it functions as expected. You decide to use the Jasmine test framework. +You are writing a simple calculator using CoffeeScript and you want to verify it functions as expected. You decide to use the Jasmine test framework. ## Discussion @@ -45,7 +45,7 @@ describe 'Calculator', -> ### Configuring Jasmine Before you can run your tests, you must download and configure Jasmine. This involves: -1. downloading the latest Jasmine zip file; +1. downloading the latest Jasmine zip file; 2. creating a spec and a spec/jasmine folder in your project; 3. extracting the downloaded Jasmine files into the spec/jasmine folder; and 4. creating a test runner.