From b29e38983c38978541ea371d7ec009ce18431c01 Mon Sep 17 00:00:00 2001 From: Dave Powers Date: Sun, 7 Sep 2014 11:14:05 -0400 Subject: [PATCH] Update links to Jasmine web site Link directly to Jasmine documentation, rather than an old link that redirects. Link to Jasmine repo per the "Standalone Release" links per Jasmine docs. --- chapters/testing/testing_with_jasmine.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.