From 17bb6330319d465f5bffbb659fa10b9468676d9b Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Thu, 1 Aug 2019 14:50:20 -0400 Subject: [PATCH] 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 --- aio/content/guide/testing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/testing.md b/aio/content/guide/testing.md index 2006aa5260..dca2378ada 100644 --- a/aio/content/guide/testing.md +++ b/aio/content/guide/testing.md @@ -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 sample application and all tests in this guide are available for inspection and experimentation: -- Sample app -- Tests +- Sample app +- Tests
## 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. Just run the [`ng test`](cli/test) CLI command: