Changed refernce to main.js to boot.js

This commit is contained in:
NicholasMurray 2016-02-01 23:25:20 +00:00 committed by Ward Bell
parent b2b025aab7
commit 7e3f90f749
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ include ../../../../_includes/_util-fns
<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script> <script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script> <script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
<script src="../node_modules/jasmine-core/lib/jasmine-core/main.js"></script> <script src="../node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>
</head> </head>
<body> <body>
@ -333,4 +333,4 @@ figure.image-display
That's not rare but it's not typical either. Most of our application parts make some use of the Angular framework. That's not rare but it's not typical either. Most of our application parts make some use of the Angular framework.
In the [next chapter](testing-an-angular-pipe.html), we'll test a class that does rely on Angular. In the [next chapter](testing-an-angular-pipe.html), we'll test a class that does rely on Angular.

View File

@ -46,7 +46,7 @@ pre.prettyprint.lang-bash
<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script> <script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script> <script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
<script src="../node_modules/jasmine-core/lib/jasmine-core/main.js"></script> <script src="../node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>
</head> </head>
<body> <body>
@ -236,4 +236,4 @@ figure.image-display
## Whats Next? ## Whats Next?
Now that were familiar with Jasmine on its own, were ready to test an application. 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](application-under-test.html). What application? We introduce you to it in the [next chapter](application-under-test.html).