From fda1b3b67cb04b8275ea28ea28807a5bb15a518f Mon Sep 17 00:00:00 2001 From: Michael Knight Date: Fri, 22 Sep 2023 11:42:20 +1000 Subject: [PATCH] chore: Fix numerous broken links in docs. --- docs/ExpectAPI.md | 2 +- docs/GlobalAPI.md | 2 +- docs/JestObjectAPI.md | 6 +++--- docs/MockFunctions.md | 2 +- docs/UpgradingToJest29.md | 2 +- website/versioned_docs/version-29.4/ExpectAPI.md | 2 +- website/versioned_docs/version-29.4/GlobalAPI.md | 2 +- website/versioned_docs/version-29.4/JestObjectAPI.md | 6 +++--- website/versioned_docs/version-29.4/MockFunctions.md | 2 +- website/versioned_docs/version-29.4/UpgradingToJest29.md | 2 +- website/versioned_docs/version-29.5/ExpectAPI.md | 2 +- website/versioned_docs/version-29.5/GlobalAPI.md | 2 +- website/versioned_docs/version-29.5/JestObjectAPI.md | 6 +++--- website/versioned_docs/version-29.5/MockFunctions.md | 2 +- website/versioned_docs/version-29.5/UpgradingToJest29.md | 2 +- website/versioned_docs/version-29.6/ExpectAPI.md | 2 +- website/versioned_docs/version-29.6/GlobalAPI.md | 2 +- website/versioned_docs/version-29.6/JestObjectAPI.md | 6 +++--- website/versioned_docs/version-29.6/MockFunctions.md | 2 +- website/versioned_docs/version-29.6/UpgradingToJest29.md | 2 +- website/versioned_docs/version-29.7/ExpectAPI.md | 2 +- website/versioned_docs/version-29.7/GlobalAPI.md | 2 +- website/versioned_docs/version-29.7/JestObjectAPI.md | 6 +++--- website/versioned_docs/version-29.7/MockFunctions.md | 2 +- website/versioned_docs/version-29.7/UpgradingToJest29.md | 2 +- 25 files changed, 35 insertions(+), 35 deletions(-) diff --git a/docs/ExpectAPI.md b/docs/ExpectAPI.md index 3596d28d5588..4ac41d8a094c 100644 --- a/docs/ExpectAPI.md +++ b/docs/ExpectAPI.md @@ -1505,7 +1505,7 @@ The type declaration of the matcher can live in a `.d.ts` file or in an imported :::tip -Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md/#setupfilesafterenv-array) script: +Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md#setupfilesafterenv-array) script: ```js import {expect} from '@jest/globals'; diff --git a/docs/GlobalAPI.md b/docs/GlobalAPI.md index c3a14d3c542c..87e42de4709f 100644 --- a/docs/GlobalAPI.md +++ b/docs/GlobalAPI.md @@ -525,7 +525,7 @@ test.concurrent('subtraction 2 numbers', async () => { :::tip -Use the [`maxConcurrency`](Configuration.md/#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. +Use the [`maxConcurrency`](Configuration.md#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. ::: diff --git a/docs/JestObjectAPI.md b/docs/JestObjectAPI.md index 16f20416fdc8..c830e0ab7295 100644 --- a/docs/JestObjectAPI.md +++ b/docs/JestObjectAPI.md @@ -344,17 +344,17 @@ Returns the `jest` object for chaining. :::tip -Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md/#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method to have your mocked modules typed. +Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method to have your mocked modules typed. ::: ### `jest.Mocked` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource) chapter of Mock Functions page for documentation. ### `jest.mocked(source, options?)` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource-options) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource-options) chapter of Mock Functions page for documentation. ### `jest.unmock(moduleName)` diff --git a/docs/MockFunctions.md b/docs/MockFunctions.md index 64382640bfda..1badb1b5c2e5 100644 --- a/docs/MockFunctions.md +++ b/docs/MockFunctions.md @@ -272,7 +272,7 @@ const otherObj = { ## Mock Names -You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md/#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. +You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. ```javascript const myMockFn = jest diff --git a/docs/UpgradingToJest29.md b/docs/UpgradingToJest29.md index 842092f445c3..122d08b8a951 100644 --- a/docs/UpgradingToJest29.md +++ b/docs/UpgradingToJest29.md @@ -62,7 +62,7 @@ import TypeScriptExamplesNote from './_TypeScriptExamplesNote.md'; ### `jest.mocked()` -The [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: +The [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: ```diff - const mockedObject = jest.mocked(someObject, true); diff --git a/website/versioned_docs/version-29.4/ExpectAPI.md b/website/versioned_docs/version-29.4/ExpectAPI.md index 3596d28d5588..4ac41d8a094c 100644 --- a/website/versioned_docs/version-29.4/ExpectAPI.md +++ b/website/versioned_docs/version-29.4/ExpectAPI.md @@ -1505,7 +1505,7 @@ The type declaration of the matcher can live in a `.d.ts` file or in an imported :::tip -Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md/#setupfilesafterenv-array) script: +Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md#setupfilesafterenv-array) script: ```js import {expect} from '@jest/globals'; diff --git a/website/versioned_docs/version-29.4/GlobalAPI.md b/website/versioned_docs/version-29.4/GlobalAPI.md index c3a14d3c542c..87e42de4709f 100644 --- a/website/versioned_docs/version-29.4/GlobalAPI.md +++ b/website/versioned_docs/version-29.4/GlobalAPI.md @@ -525,7 +525,7 @@ test.concurrent('subtraction 2 numbers', async () => { :::tip -Use the [`maxConcurrency`](Configuration.md/#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. +Use the [`maxConcurrency`](Configuration.md#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. ::: diff --git a/website/versioned_docs/version-29.4/JestObjectAPI.md b/website/versioned_docs/version-29.4/JestObjectAPI.md index 104d8332d377..e03a8006074f 100644 --- a/website/versioned_docs/version-29.4/JestObjectAPI.md +++ b/website/versioned_docs/version-29.4/JestObjectAPI.md @@ -344,17 +344,17 @@ Returns the `jest` object for chaining. :::tip -Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md/#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method to have your mocked modules typed. +Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method to have your mocked modules typed. ::: ### `jest.Mocked` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource) chapter of Mock Functions page for documentation. ### `jest.mocked(source, options?)` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource-options) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource-options) chapter of Mock Functions page for documentation. ### `jest.unmock(moduleName)` diff --git a/website/versioned_docs/version-29.4/MockFunctions.md b/website/versioned_docs/version-29.4/MockFunctions.md index 64382640bfda..1badb1b5c2e5 100644 --- a/website/versioned_docs/version-29.4/MockFunctions.md +++ b/website/versioned_docs/version-29.4/MockFunctions.md @@ -272,7 +272,7 @@ const otherObj = { ## Mock Names -You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md/#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. +You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. ```javascript const myMockFn = jest diff --git a/website/versioned_docs/version-29.4/UpgradingToJest29.md b/website/versioned_docs/version-29.4/UpgradingToJest29.md index 842092f445c3..122d08b8a951 100644 --- a/website/versioned_docs/version-29.4/UpgradingToJest29.md +++ b/website/versioned_docs/version-29.4/UpgradingToJest29.md @@ -62,7 +62,7 @@ import TypeScriptExamplesNote from './_TypeScriptExamplesNote.md'; ### `jest.mocked()` -The [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: +The [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: ```diff - const mockedObject = jest.mocked(someObject, true); diff --git a/website/versioned_docs/version-29.5/ExpectAPI.md b/website/versioned_docs/version-29.5/ExpectAPI.md index 3596d28d5588..4ac41d8a094c 100644 --- a/website/versioned_docs/version-29.5/ExpectAPI.md +++ b/website/versioned_docs/version-29.5/ExpectAPI.md @@ -1505,7 +1505,7 @@ The type declaration of the matcher can live in a `.d.ts` file or in an imported :::tip -Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md/#setupfilesafterenv-array) script: +Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md#setupfilesafterenv-array) script: ```js import {expect} from '@jest/globals'; diff --git a/website/versioned_docs/version-29.5/GlobalAPI.md b/website/versioned_docs/version-29.5/GlobalAPI.md index c3a14d3c542c..87e42de4709f 100644 --- a/website/versioned_docs/version-29.5/GlobalAPI.md +++ b/website/versioned_docs/version-29.5/GlobalAPI.md @@ -525,7 +525,7 @@ test.concurrent('subtraction 2 numbers', async () => { :::tip -Use the [`maxConcurrency`](Configuration.md/#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. +Use the [`maxConcurrency`](Configuration.md#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. ::: diff --git a/website/versioned_docs/version-29.5/JestObjectAPI.md b/website/versioned_docs/version-29.5/JestObjectAPI.md index 16f20416fdc8..c830e0ab7295 100644 --- a/website/versioned_docs/version-29.5/JestObjectAPI.md +++ b/website/versioned_docs/version-29.5/JestObjectAPI.md @@ -344,17 +344,17 @@ Returns the `jest` object for chaining. :::tip -Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md/#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method to have your mocked modules typed. +Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method to have your mocked modules typed. ::: ### `jest.Mocked` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource) chapter of Mock Functions page for documentation. ### `jest.mocked(source, options?)` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource-options) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource-options) chapter of Mock Functions page for documentation. ### `jest.unmock(moduleName)` diff --git a/website/versioned_docs/version-29.5/MockFunctions.md b/website/versioned_docs/version-29.5/MockFunctions.md index 64382640bfda..1badb1b5c2e5 100644 --- a/website/versioned_docs/version-29.5/MockFunctions.md +++ b/website/versioned_docs/version-29.5/MockFunctions.md @@ -272,7 +272,7 @@ const otherObj = { ## Mock Names -You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md/#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. +You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. ```javascript const myMockFn = jest diff --git a/website/versioned_docs/version-29.5/UpgradingToJest29.md b/website/versioned_docs/version-29.5/UpgradingToJest29.md index 842092f445c3..122d08b8a951 100644 --- a/website/versioned_docs/version-29.5/UpgradingToJest29.md +++ b/website/versioned_docs/version-29.5/UpgradingToJest29.md @@ -62,7 +62,7 @@ import TypeScriptExamplesNote from './_TypeScriptExamplesNote.md'; ### `jest.mocked()` -The [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: +The [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: ```diff - const mockedObject = jest.mocked(someObject, true); diff --git a/website/versioned_docs/version-29.6/ExpectAPI.md b/website/versioned_docs/version-29.6/ExpectAPI.md index 3596d28d5588..4ac41d8a094c 100644 --- a/website/versioned_docs/version-29.6/ExpectAPI.md +++ b/website/versioned_docs/version-29.6/ExpectAPI.md @@ -1505,7 +1505,7 @@ The type declaration of the matcher can live in a `.d.ts` file or in an imported :::tip -Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md/#setupfilesafterenv-array) script: +Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md#setupfilesafterenv-array) script: ```js import {expect} from '@jest/globals'; diff --git a/website/versioned_docs/version-29.6/GlobalAPI.md b/website/versioned_docs/version-29.6/GlobalAPI.md index c3a14d3c542c..87e42de4709f 100644 --- a/website/versioned_docs/version-29.6/GlobalAPI.md +++ b/website/versioned_docs/version-29.6/GlobalAPI.md @@ -525,7 +525,7 @@ test.concurrent('subtraction 2 numbers', async () => { :::tip -Use the [`maxConcurrency`](Configuration.md/#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. +Use the [`maxConcurrency`](Configuration.md#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. ::: diff --git a/website/versioned_docs/version-29.6/JestObjectAPI.md b/website/versioned_docs/version-29.6/JestObjectAPI.md index 16f20416fdc8..c830e0ab7295 100644 --- a/website/versioned_docs/version-29.6/JestObjectAPI.md +++ b/website/versioned_docs/version-29.6/JestObjectAPI.md @@ -344,17 +344,17 @@ Returns the `jest` object for chaining. :::tip -Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md/#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method to have your mocked modules typed. +Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method to have your mocked modules typed. ::: ### `jest.Mocked` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource) chapter of Mock Functions page for documentation. ### `jest.mocked(source, options?)` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource-options) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource-options) chapter of Mock Functions page for documentation. ### `jest.unmock(moduleName)` diff --git a/website/versioned_docs/version-29.6/MockFunctions.md b/website/versioned_docs/version-29.6/MockFunctions.md index 64382640bfda..1badb1b5c2e5 100644 --- a/website/versioned_docs/version-29.6/MockFunctions.md +++ b/website/versioned_docs/version-29.6/MockFunctions.md @@ -272,7 +272,7 @@ const otherObj = { ## Mock Names -You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md/#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. +You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. ```javascript const myMockFn = jest diff --git a/website/versioned_docs/version-29.6/UpgradingToJest29.md b/website/versioned_docs/version-29.6/UpgradingToJest29.md index 842092f445c3..122d08b8a951 100644 --- a/website/versioned_docs/version-29.6/UpgradingToJest29.md +++ b/website/versioned_docs/version-29.6/UpgradingToJest29.md @@ -62,7 +62,7 @@ import TypeScriptExamplesNote from './_TypeScriptExamplesNote.md'; ### `jest.mocked()` -The [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: +The [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: ```diff - const mockedObject = jest.mocked(someObject, true); diff --git a/website/versioned_docs/version-29.7/ExpectAPI.md b/website/versioned_docs/version-29.7/ExpectAPI.md index 3596d28d5588..4ac41d8a094c 100644 --- a/website/versioned_docs/version-29.7/ExpectAPI.md +++ b/website/versioned_docs/version-29.7/ExpectAPI.md @@ -1505,7 +1505,7 @@ The type declaration of the matcher can live in a `.d.ts` file or in an imported :::tip -Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md/#setupfilesafterenv-array) script: +Instead of importing `toBeWithinRange` module to the test file, you can enable the matcher for all tests by moving the `expect.extend` call to a [`setupFilesAfterEnv`](Configuration.md#setupfilesafterenv-array) script: ```js import {expect} from '@jest/globals'; diff --git a/website/versioned_docs/version-29.7/GlobalAPI.md b/website/versioned_docs/version-29.7/GlobalAPI.md index c3a14d3c542c..87e42de4709f 100644 --- a/website/versioned_docs/version-29.7/GlobalAPI.md +++ b/website/versioned_docs/version-29.7/GlobalAPI.md @@ -525,7 +525,7 @@ test.concurrent('subtraction 2 numbers', async () => { :::tip -Use the [`maxConcurrency`](Configuration.md/#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. +Use the [`maxConcurrency`](Configuration.md#maxconcurrency-number) configuration option to prevent Jest from executing more than the specified amount of tests at the same time. ::: diff --git a/website/versioned_docs/version-29.7/JestObjectAPI.md b/website/versioned_docs/version-29.7/JestObjectAPI.md index 16f20416fdc8..c830e0ab7295 100644 --- a/website/versioned_docs/version-29.7/JestObjectAPI.md +++ b/website/versioned_docs/version-29.7/JestObjectAPI.md @@ -344,17 +344,17 @@ Returns the `jest` object for chaining. :::tip -Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md/#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method to have your mocked modules typed. +Writing tests in TypeScript? Use the [`jest.Mocked`](MockFunctionAPI.md#jestmockedsource) utility type or the [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method to have your mocked modules typed. ::: ### `jest.Mocked` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource) chapter of Mock Functions page for documentation. ### `jest.mocked(source, options?)` -See [TypeScript Usage](MockFunctionAPI.md/#jestmockedsource-options) chapter of Mock Functions page for documentation. +See [TypeScript Usage](MockFunctionAPI.md#jestmockedsource-options) chapter of Mock Functions page for documentation. ### `jest.unmock(moduleName)` diff --git a/website/versioned_docs/version-29.7/MockFunctions.md b/website/versioned_docs/version-29.7/MockFunctions.md index 64382640bfda..1badb1b5c2e5 100644 --- a/website/versioned_docs/version-29.7/MockFunctions.md +++ b/website/versioned_docs/version-29.7/MockFunctions.md @@ -272,7 +272,7 @@ const otherObj = { ## Mock Names -You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md/#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. +You can optionally provide a name for your mock functions, which will be displayed instead of `'jest.fn()'` in the test error output. Use [`.mockName()`](MockFunctionAPI.md#mockfnmocknamename) if you want to be able to quickly identify the mock function reporting an error in your test output. ```javascript const myMockFn = jest diff --git a/website/versioned_docs/version-29.7/UpgradingToJest29.md b/website/versioned_docs/version-29.7/UpgradingToJest29.md index 842092f445c3..122d08b8a951 100644 --- a/website/versioned_docs/version-29.7/UpgradingToJest29.md +++ b/website/versioned_docs/version-29.7/UpgradingToJest29.md @@ -62,7 +62,7 @@ import TypeScriptExamplesNote from './_TypeScriptExamplesNote.md'; ### `jest.mocked()` -The [`jest.mocked()`](MockFunctionAPI.md/#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: +The [`jest.mocked()`](MockFunctionAPI.md#jestmockedsource-options) helper method now wraps types of deep members of passed object by default. If you have used the method with `true` as the second argument, remove it to avoid type errors: ```diff - const mockedObject = jest.mocked(someObject, true);