Skip to content

Commit

Permalink
Update links to Jasmine web site
Browse files Browse the repository at this point in the history
Link directly to Jasmine documentation, rather than an old link that redirects. Link to Jasmine repo per the "Standalone Release" links per Jasmine docs.
  • Loading branch information
djpowers committed Sep 7, 2014
1 parent cf57849 commit b29e389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chapters/testing/testing_with_jasmine.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="http://pivotal.github.com/jasmine/" target="_blank">Jasmine</a> test framework.
You are writing a simple calculator using CoffeeScript and you want to verify it functions as expected. You decide to use the <a href="http://jasmine.github.io/" target="_blank">Jasmine</a> test framework.

## Discussion

Expand Down Expand Up @@ -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 <a href="http://pivotal.github.com/jasmine/download.html" target="_blank">Jasmine</a> zip file;
1. downloading the latest <a href="https://github.com/pivotal/jasmine/tree/master/dist" target="_blank">Jasmine</a> 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.
Expand Down

0 comments on commit b29e389

Please sign in to comment.