Skip to content

Commit 95914a0

Browse files
robphoenixalxhub
authored andcommitted
docs: update http to https where possible (angular#26509)
PR Close angular#26509
1 parent 9c50891 commit 95914a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

aio/content/guide/testing.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ You'll need to push a new commit to trigger a build.
184184

185185
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.
186186

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)
188188
and [Protractor](https://www.protractortest.org/#/api-overview) end-to-end testing tool,
189189
which you must adjust to start Chrome without sandboxing.
190190

@@ -259,7 +259,7 @@ The code coverage percentages let you estimate how much of your code is tested.
259259
If your team decides on a set minimum amount to be unit tested, you can enforce this minimum with the Angular CLI.
260260

261261
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.
263263

264264
```
265265
coverageIstanbulReporter: {
@@ -1010,7 +1010,7 @@ _compiles the app before running the tests_.
10101010

10111011
However, if you run the tests in a **non-CLI environment**,
10121012
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:
10141014

10151015
<code-example language="sh" class="code-shell" hideCopy>
10161016
Error: This test module uses the component BannerComponent
@@ -1489,7 +1489,7 @@ While the `async()` and `fakeAsync()` functions greatly
14891489
simplify Angular asynchronous testing,
14901490
you can still fall back to the traditional technique
14911491
and pass `it` a function that takes a
1492-
[`done` callback](http://jasmine.github.io/2.0/introduction.html#section-Asynchronous_Support).
1492+
[`done` callback](https://jasmine.github.io/2.0/introduction.html#section-Asynchronous_Support).
14931493

14941494
You can't call `done()` in `async()` or `fakeAsync()` functions, because the `done parameter`
14951495
is `undefined`.

0 commit comments

Comments
 (0)