You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Jest is one of Facebook's open-source projects that is both under very active development and is also being used to ship code to everybody on [Facebook.com](https://www.facebook.com). We're still working out the kinks to make contributing to this project as easy and transparent as possible, but we're not quite there yet. Hopefully, this document makes the process for contributing clear and answers some questions that you may have.
4
4
5
-
If you want an already configured online IDE to contribute to Jest, you can use [Gitpod](https://gitpod.io/#https://github.com/facebook/jest)!
5
+
If you want an already configured online IDE to contribute to Jest, you can use [Gitpod](https://gitpod.io/#https://github.com/jestjs/jest)!
6
6
7
7
## [Code of Conduct](https://code.facebook.com/codeofconduct)
8
8
@@ -131,7 +131,7 @@ Ran all test suites.
131
131
132
132
## Checking Constraints
133
133
134
-
We use [Yarn Constraints](https://yarnpkg.com/features/constraints) to enforce various rules across the repository. They are declared inside the [`constraints.pro` file](https://github.com/facebook/jest/blob/main/constraints.pro) and their purposes are documented with comments.
134
+
We use [Yarn Constraints](https://yarnpkg.com/features/constraints) to enforce various rules across the repository. They are declared inside the [`constraints.pro` file](https://github.com/jestjs/jest/blob/main/constraints.pro) and their purposes are documented with comments.
135
135
136
136
Constraints can be checked with `yarn constraints`, and fixed with `yarn constraints --fix`. Generally speaking:
<img src="https://img.shields.io/twitter/follow/jestjs_.svg?style=social&label=Follow%20@jestjs_" alt="Follow on Twitter" />
10
10
</a>
11
11
</p>
12
12
<palign="center">
13
-
<ahref="https://github.com/facebook/jest/actions/workflows/nodejs.yml"><imgalt="GitHub CI Status"src="https://img.shields.io/github/actions/workflow/status/facebook/jest/nodejs.yml?label=CI&logo=GitHub"></a>
13
+
<ahref="https://github.com/jestjs/jest/actions/workflows/nodejs.yml"><imgalt="GitHub CI Status"src="https://img.shields.io/github/actions/workflow/status/facebook/jest/nodejs.yml?label=CI&logo=GitHub"></a>
@@ -229,13 +229,13 @@ Learn more about using [Jest on the official site!](https://jestjs.io)
229
229
230
230
## Badge
231
231
232
-
Show the world you're using _Jest_`→`[](https://github.com/facebook/jest)[](https://github.com/facebook/jest)[](https://github.com/facebook/jest)
232
+
Show the world you're using _Jest_`→`[](https://github.com/jestjs/jest)[](https://github.com/jestjs/jest)[](https://github.com/jestjs/jest)
233
233
234
234
<!-- prettier-ignore -->
235
235
```md
236
-
[](https://github.com/facebook/jest)
@@ -250,15 +250,15 @@ Facebook has adopted a Code of Conduct that we expect project participants to ad
250
250
251
251
Read our [contributing guide](CONTRIBUTING.md) to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Jest.
252
252
253
-
### [Good First Issues](https://github.com/facebook/jest/labels/good%20first%20issue)
253
+
### [Good First Issues](https://github.com/jestjs/jest/labels/good%20first%20issue)
254
254
255
-
To help you get your feet wet and get you familiar with our contribution process, we have a list of [good first issues](https://github.com/facebook/jest/labels/good%20first%20issue) that contain bugs which have a relatively limited scope. This is a great place to get started.
255
+
To help you get your feet wet and get you familiar with our contribution process, we have a list of [good first issues](https://github.com/jestjs/jest/labels/good%20first%20issue) that contain bugs which have a relatively limited scope. This is a great place to get started.
256
256
257
257
## Credits
258
258
259
259
This project exists thanks to all the people who [contribute](CONTRIBUTING.md).
Copy file name to clipboardExpand all lines: docs/CodeTransformation.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Jest will cache the result of a transformation and attempt to invalidate that re
13
13
14
14
## Defaults
15
15
16
-
Jest ships with one transformer out of the box –[`babel-jest`](https://github.com/facebook/jest/tree/main/packages/babel-jest#setup). It will load your project's Babel configuration and transform any file matching the `/\.[jt]sx?$/` RegExp (in other words, any `.js`, `.jsx`, `.ts` or `.tsx` file). In addition, `babel-jest` will inject the Babel plugin necessary for mock hoisting talked about in [ES Module mocking](ManualMocks.md#using-with-es-module-imports).
16
+
Jest ships with one transformer out of the box –[`babel-jest`](https://github.com/jestjs/jest/tree/main/packages/babel-jest#setup). It will load your project's Babel configuration and transform any file matching the `/\.[jt]sx?$/` RegExp (in other words, any `.js`, `.jsx`, `.ts` or `.tsx` file). In addition, `babel-jest` will inject the Babel plugin necessary for mock hoisting talked about in [ES Module mocking](ManualMocks.md#using-with-es-module-imports).
17
17
18
18
:::tip
19
19
@@ -134,7 +134,7 @@ type TransformerFactory<X extends Transformer> = {
134
134
135
135
:::note
136
136
137
-
The definitions above were trimmed down for brevity. Full code can be found in [Jest repo on GitHub](https://github.com/facebook/jest/blob/main/packages/jest-transform/src/types.ts) (remember to choose the right tag/commit for your version of Jest).
137
+
The definitions above were trimmed down for brevity. Full code can be found in [Jest repo on GitHub](https://github.com/jestjs/jest/blob/main/packages/jest-transform/src/types.ts) (remember to choose the right tag/commit for your version of Jest).
0 commit comments