You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Link directly to Jasmine documentation, rather than an old link that redirects. Link to Jasmine repo per the "Standalone Release" links per Jasmine docs.
Copy file name to clipboardExpand all lines: chapters/testing/testing_with_jasmine.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ chapter: Testing
5
5
---
6
6
## Problem
7
7
8
-
You are writing a simple calculator using CoffeeScript and you want to verify it functions as expected. You decide to use the <ahref="http://pivotal.github.com/jasmine/"target="_blank">Jasmine</a> test framework.
8
+
You are writing a simple calculator using CoffeeScript and you want to verify it functions as expected. You decide to use the <ahref="http://jasmine.github.io/"target="_blank">Jasmine</a> test framework.
9
9
10
10
## Discussion
11
11
@@ -45,7 +45,7 @@ describe 'Calculator', ->
45
45
### Configuring Jasmine
46
46
47
47
Before you can run your tests, you must download and configure Jasmine. This involves:
48
-
1. downloading the latest <ahref="http://pivotal.github.com/jasmine/download.html"target="_blank">Jasmine</a> zip file;
48
+
1. downloading the latest <ahref="https://github.com/pivotal/jasmine/tree/master/dist"target="_blank">Jasmine</a> zip file;
49
49
2. creating a spec and a spec/jasmine folder in your project;
50
50
3. extracting the downloaded Jasmine files into the spec/jasmine folder; and
0 commit comments