Skip to content

Commit c32f498

Browse files
authored
chore: fix broken link watchman (#9727)
1 parent f11c366 commit c32f498

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
### Chore & Maintenance
88

9+
- `[docs]` Update link to watchman troubleshooting docs ([#9727](https://github.com/facebook/jest/pull/9727))
910
- `[@jest/test-result]` Remove dependency on `@jest/transform`, which lead to a sprawling dependency tree ([#9747](https://github.com/facebook/jest/pull/9747))
1011
- `[@jest/transform]` Expose type `TransformedSource` ([#9736](https://github.com/facebook/jest/pull/9736))
1112

docs/Troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jest.setTimeout(10000); // 10 second timeout
156156

157157
Try running Jest with [`--no-watchman`](CLI.md#--watchman) or set the `watchman` configuration option to `false`.
158158

159-
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting.html).
159+
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting).
160160

161161
## Tests are Extremely Slow on Docker and/or Continuous Integration (CI) server.
162162

packages/jest-haste-map/src/crawlers/watchman.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ import type {
2020

2121
type WatchmanRoots = Map<string, Array<string>>;
2222

23-
const watchmanURL =
24-
'https://facebook.github.io/watchman/docs/troubleshooting.html';
23+
const watchmanURL = 'https://facebook.github.io/watchman/docs/troubleshooting';
2524

2625
function WatchmanError(error: Error): Error {
2726
error.message =

website/versioned_docs/version-22.x/Troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jest.setTimeout(10000); // 10 second timeout
155155

156156
Try running Jest with [`--no-watchman`](CLI.md#--watchman) or set the `watchman` configuration option to `false`.
157157

158-
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting.html).
158+
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting).
159159

160160
## Tests are Extremely Slow on Docker and/or Continuous Integration (CI) server.
161161

website/versioned_docs/version-23.x/Troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jest.setTimeout(10000); // 10 second timeout
157157

158158
Try running Jest with [`--no-watchman`](CLI.md#--watchman) or set the `watchman` configuration option to `false`.
159159

160-
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting.html).
160+
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting).
161161

162162
## Tests are Extremely Slow on Docker and/or Continuous Integration (CI) server.
163163

website/versioned_docs/version-24.x/Troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jest.setTimeout(10000); // 10 second timeout
157157

158158
Try running Jest with [`--no-watchman`](CLI.md#--watchman) or set the `watchman` configuration option to `false`.
159159

160-
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting.html).
160+
Also see [watchman troubleshooting](https://facebook.github.io/watchman/docs/troubleshooting).
161161

162162
## Tests are Extremely Slow on Docker and/or Continuous Integration (CI) server.
163163

0 commit comments

Comments
 (0)