From bee92db759fe9491d96cb02ebbfc32fb4433e73b Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 17 Oct 2017 08:19:44 -0700 Subject: [PATCH] Fix dead link to Jest "expect" docs (#3289) Closes #3291 --- template/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/README.md b/template/README.md index 61f32665867..9948f499c04 100644 --- a/template/README.md +++ b/template/README.md @@ -1235,7 +1235,7 @@ it('sums numbers', () => { }); ``` -All `expect()` matchers supported by Jest are [extensively documented here](http://facebook.github.io/jest/docs/expect.html).
+All `expect()` matchers supported by Jest are [extensively documented here](https://facebook.github.io/jest/docs/en/expect.html#content).
You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](http://facebook.github.io/jest/docs/expect.html#tohavebeencalled) to create “spies” or mock functions. ### Testing Components