Skip to content

Commit 9c50891

Browse files
robphoenixalxhub
authored andcommitted
docs: update links to Karma homepage (angular#26509)
PR Close angular#26509
1 parent 624433c commit 9c50891

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aio/content/guide/testing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Just run the [`ng test`](cli/test) CLI command:
2323
</code-example>
2424

2525
The `ng test` command builds the app in _watch mode_,
26-
and launches the [karma test runner](https://karma-runner.github.io/1.0/index.html).
26+
and launches the [karma test runner](https://karma-runner.github.io).
2727

2828
The console output looks a bit like this:
2929

@@ -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/2.0/config/configuration-file.html)
187+
There are configuration files for both the [Karma JavaScript test runner](http://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/0.13/index.html) test platform configuration file, `karma.conf.js`, and add the following in the `coverageIstanbulReporter:` key.
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.
263263

264264
```
265265
coverageIstanbulReporter: {

0 commit comments

Comments
 (0)