docs: remove download for testing examples (#31949)

Examples for testing are designed specifically to run in StackBlitz and
are not regular cli projects (e.g. their `main.ts` files may load and run
tests instead of bootstrapping an app). They are not intended to be
downloaded and built/run locally using the cli.

In order to avoid confusing users, this commit removes the download links
from the guide. If desired, the projects can still be exported locally
via StackBlitz's UI.

Related to #31020 and #31937.

PR Close #31949
This commit is contained in:
Kapunahele Wong 2019-08-01 14:50:20 -04:00 committed by Alex Rickabaugh
parent 9106271f2c
commit 17bb633031
1 changed files with 3 additions and 3 deletions

View File

@ -6,14 +6,14 @@ This guide offers tips and techniques for unit and integration testing Angular a
The guide presents tests of a sample application created with the [Angular CLI](cli). This sample application is much like the one created in the [_Tour of Heroes_ tutorial](tutorial). The guide presents tests of a sample application created with the [Angular CLI](cli). This sample application is much like the one created in the [_Tour of Heroes_ tutorial](tutorial).
The sample application and all tests in this guide are available for inspection and experimentation: The sample application and all tests in this guide are available for inspection and experimentation:
- <live-example embedded-style>Sample app</live-example> - <live-example embedded-style noDownload>Sample app</live-example>
- <live-example stackblitz="specs">Tests</live-example> - <live-example stackblitz="specs" noDownload>Tests</live-example>
<hr> <hr>
## Setup ## Setup
The Angular CLI downloads and install everything you need to test an Angular application with the [Jasmine test framework](https://jasmine.github.io/). The Angular CLI downloads and installs everything you need to test an Angular application with the [Jasmine test framework](https://jasmine.github.io/).
The project you create with the CLI is immediately ready to test. The project you create with the CLI is immediately ready to test.
Just run the [`ng test`](cli/test) CLI command: Just run the [`ng test`](cli/test) CLI command: