From 71fa896a91d1bfd554acc7998074fde92d0eacc9 Mon Sep 17 00:00:00 2001 From: David Shevitz Date: Thu, 3 Jun 2021 05:27:49 +0000 Subject: [PATCH] docs: update link to jasmine documentation about spies (#42463) PR Close #42463 --- aio/content/guide/testing-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/testing-services.md b/aio/content/guide/testing-services.md index 78cb8f3f66..3895e43b4c 100644 --- a/aio/content/guide/testing-services.md +++ b/aio/content/guide/testing-services.md @@ -41,7 +41,7 @@ The first test creates a `ValueService` with `new` and passes it to the `MasterS However, injecting the real service rarely works well as most dependent services are difficult to create and control. Instead you can mock the dependency, use a dummy value, or create a -[spy](https://jasmine.github.io/2.0/introduction.html#section-Spies) +[spy](https://jasmine.github.io/tutorials/your_first_suite#section-Spies) on the pertinent service method.