Skip to content

Commit 2fa4c8a

Browse files
authored
Use https for linked images in docs to fix mixed content warnings (#5985)
1 parent 433d0be commit 2fa4c8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docusaurus/docs/running-tests.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ When you run `npm test`, Jest will launch in the watch mode. Every time you save
3333

3434
The watcher includes an interactive command-line interface with the ability to run all tests, or focus on a search pattern. It is designed this way so that you can keep it open and enjoy fast re-runs. You can learn the commands from the “Watch Usage” note that the watcher prints after every run:
3535

36-
![Jest watch mode](http://facebook.github.io/jest/img/blog/15-watch.gif)
36+
![Jest watch mode](https://jestjs.io/img/blog/15-watch.gif)
3737

3838
## Version Control Integration
3939

@@ -264,7 +264,7 @@ Similarly, `fit()` lets you focus on a specific test without running any other t
264264
Jest has an integrated coverage reporter that works well with ES6 and requires no configuration.<br>
265265
Run `npm test -- --coverage` (note extra `--` in the middle) to include a coverage report like this:
266266
267-
![coverage report](http://i.imgur.com/5bFhnTS.png)
267+
![coverage report](https://i.imgur.com/5bFhnTS.png)
268268
269269
Note that tests run much slower with coverage so it is recommended to run it separately from your normal workflow.
270270

0 commit comments

Comments
 (0)