You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aio/content/guide/testing.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -184,7 +184,7 @@ You'll need to push a new commit to trigger a build.
184
184
185
185
When the CLI commands `ng test` and `ng e2e` are generally running the CI tests in your environment, you might still need to adjust your configuration to run the Chrome browser tests.
186
186
187
-
There are configuration files for both the [Karma JavaScript test runner](http://karma-runner.github.io/latest/config/configuration-file.html)
187
+
There are configuration files for both the [Karma JavaScript test runner](https://karma-runner.github.io/latest/config/configuration-file.html)
188
188
and [Protractor](https://www.protractortest.org/#/api-overview) end-to-end testing tool,
189
189
which you must adjust to start Chrome without sandboxing.
190
190
@@ -259,7 +259,7 @@ The code coverage percentages let you estimate how much of your code is tested.
259
259
If your team decides on a set minimum amount to be unit tested, you can enforce this minimum with the Angular CLI.
260
260
261
261
For example, suppose you want the code base to have a minimum of 80% code coverage.
262
-
To enable this, open the [Karma](http://karma-runner.github.io) test platform configuration file, `karma.conf.js`, and add the following in the `coverageIstanbulReporter:` key.
262
+
To enable this, open the [Karma](https://karma-runner.github.io) test platform configuration file, `karma.conf.js`, and add the following in the `coverageIstanbulReporter:` key.
263
263
264
264
```
265
265
coverageIstanbulReporter: {
@@ -1010,7 +1010,7 @@ _compiles the app before running the tests_.
1010
1010
1011
1011
However, if you run the tests in a **non-CLI environment**,
1012
1012
tests of this component may fail.
1013
-
For example, if you run the `BannerComponent` tests in a web coding environment such as [plunker](http://plnkr.co/), you'll see a message like this one:
1013
+
For example, if you run the `BannerComponent` tests in a web coding environment such as [plunker](https://plnkr.co/), you'll see a message like this one:
0 commit comments