Skip to content

Commit 5505d09

Browse files
authored
Merge pull request #180 from Shoonkey/localhost-fix
Fix broken link references in the docs
2 parents 04e906c + 720b184 commit 5505d09

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

_tutorials/custom_matchers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ set of utility functions for matchers to use to perform tasks like
5555
determining whether two objects are equal (see:
5656
<a href="/api/edge/MatchersUtil.html"><code>MatchersUtil</code></a> for reference documentation).
5757
By using <code>MatchersUtil</code> where appropriate, custom matchers can work with
58-
<a href="http://localhost:4000/tutorials/custom_equality">custom equality testers</a>
59-
and <a href="http://localhost:4000/tutorials/custom_object_formatters">custom object formatters</a>
58+
<a href="/tutorials/custom_equality">custom equality testers</a>
59+
and <a href="/tutorials/custom_object_formatters">custom object formatters</a>
6060
without any extra effort.</p>
6161

6262
</div>

_tutorials/src/custom_matchers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const customMatchers = {
2222
determining whether two objects are equal (see:
2323
[`MatchersUtil`](/api/edge/MatchersUtil.html) for reference documentation).
2424
By using `MatchersUtil` where appropriate, custom matchers can work with
25-
[custom equality testers](http://localhost:4000/tutorials/custom_equality)
26-
and [custom object formatters](http://localhost:4000/tutorials/custom_object_formatters)
25+
[custom equality testers](/tutorials/custom_equality)
26+
and [custom object formatters](/tutorials/custom_object_formatters)
2727
without any extra effort.
2828
*/
2929
toBeGoofy: function (matchersUtil) {

_upgrade-guides/5.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ to 2.0.
3030
The new parallel execution mode introduced in Jasmine 5.0 comes with additional
3131
restrictions on how both specs and reporters are written. These restrictions
3232
apply only when Jasmine is run in the parallel mode. See the
33-
[guide to parallel execution](running_specs_in_parallel) for details.
33+
[guide to parallel execution](/tutorials/running_specs_in_parallel) for details.
3434

3535
<h2>Contents</h2>
3636

@@ -85,7 +85,7 @@ or `jasmine-browser-runner` 2.x.
8585
The biggest change in 5.0 is support for parallel execution in Node.js via the
8686
`jasmine` package. Parallel execution imposes some constraints on both test
8787
suites and reporters, and as a result not everyone will be able to adopt it
88-
without making changes. See [Running Specs in Parallel](running_specs_in_parallel)
88+
without making changes. See [Running Specs in Parallel](/tutorials/running_specs_in_parallel)
8989
for more information.
9090

9191
<h2>Changes to global error handling in browsers</h2>
@@ -96,7 +96,7 @@ use `addEventListener` instead. This means that Jasmine will no longer override
9696
any error handler that your code installs prior to startup. It also means that
9797
you can no longer override Jasmine's global error handling by setting
9898
`window.onerror`. If you need to override Jasmine's global error handling, use
99-
[spyOnGlobalErrors](http://localhost:4000/api/4.6/jasmine.html#.spyOnGlobalErrorsAsync).
99+
[spyOnGlobalErrors](/api/4.6/jasmine.html#.spyOnGlobalErrorsAsync).
100100

101101
Using `addEventListener` allows Jasmine to provide better error information in
102102
many cases. However, some browsers limit the information that's provided to

0 commit comments

Comments
 (0)