This commit is contained in:
Mithun Patel 2015-11-21 11:59:03 -06:00 committed by Ward Bell
parent 2843cf2d5d
commit 0ddd70a6e1
4 changed files with 5 additions and 5 deletions

View File

@ -35,4 +35,4 @@ figure.image-display
.l-main-section
:marked
## Whats Next?
Now that were familiar with how the test app works, were ready to poke at it with our first application tests written in Jasmine.
Now that were familiar with how the test app works, were ready to poke at it with our [first application tests](first-app-tests.html) written in Jasmine.

View File

@ -333,4 +333,4 @@ figure.image-display
Thats not rare but its not typical either. Most of our application parts make some use of the Angular framework.
In the next chapter, well test a class that does rely on Angular.
In the [next chapter](testing-an-angular-pipe.html), well test a class that does rely on Angular.

View File

@ -121,4 +121,4 @@ figure.image-display
such as <code>npm</code>, <code>gulp</code>, and <code>live-server</code>.
:marked
Lets get started!
[Lets get started!](jasmine-testing-101.html)

View File

@ -151,7 +151,7 @@ pre.prettyprint.lang-bash
We cant tell what file produced these test results. We only have one file at the moment but soon well write more.
We should wrap this test something that identifies the file. In Jasmine that “something” is a `describe` function. Every test file should have at least one `describe` that identifies the file holding the test(s).
We should wrap this test into something that identifies the file. In Jasmine that “something” is a `describe` function. Every test file should have at least one `describe` that identifies the file holding the test(s).
Heres what our revised `1st.spec.ts` looks like when wrapped in a `describe`:
```
@ -233,4 +233,4 @@ figure.image-display
## Whats Next?
Now that were familiar with Jasmine on its own, were ready to test an application.
What application? We introduce you to it in the next chapter.
What application? We introduce you to it in the [next chapter](application-under-test.html).