Gathering detailed insights and metrics for @jest/types
Gathering detailed insights and metrics for @jest/types
Gathering detailed insights and metrics for @jest/types
Gathering detailed insights and metrics for @jest/types
@types/jest
TypeScript definitions for jest
jest-circus
[type-definitions]: https://github.com/jestjs/jest/blob/main/packages/jest-types/src/Circus.ts
@types/jest-diff
Stub TypeScript definitions entry for jest-diff, which provides its own types definitions
@types/testing-library__jest-dom
Stub TypeScript definitions entry for @testing-library/jest-dom, which provides its own types definitions
npm install @jest/types
Typescript
Module System
Min. Node Version
Node Version
NPM Version
74.2
Supply Chain
74.7
Quality
89.5
Maintenance
100
Vulnerability
100
License
v30.0.0-beta.4
Updated on May 27, 2025
v30.0.0-beta.3
Updated on May 27, 2025
v30.0.0-alpha.7
Updated on Jan 30, 2025
v30.0.0-alpha.6
Updated on Aug 08, 2024
v30.0.0-alpha.5
Updated on May 30, 2024
v30.0.0-alpha.4
Updated on May 12, 2024
TypeScript (78.99%)
JavaScript (20.36%)
CSS (0.56%)
Prolog (0.08%)
Shell (0.01%)
Handlebars (0.01%)
Total Downloads
13,630,119,445
Last Day
4,042,543
Last Week
71,346,774
Last Month
311,545,818
Last Year
3,537,301,619
MIT License
44,794 Stars
7,386 Commits
6,545 Forks
561 Watchers
5 Branches
1,573 Contributors
Updated on Jun 01, 2025
Minified
Minified + Gzipped
Latest Version
30.0.0-beta.3
Package Id
@jest/types@30.0.0-beta.3
Unpacked Size
30.50 kB
Size
8.02 kB
File Count
5
NPM Version
lerna/3.12.3/node@v23.11.0+arm64 (darwin)
Node Version
23.11.0
Published on
May 27, 2025
Cumulative downloads
Total Downloads
Last Day
-9.8%
4,042,543
Compared to previous day
Last Week
-8.1%
71,346,774
Compared to previous week
Last Month
2.8%
311,545,818
Compared to previous month
Last Year
-2.9%
3,537,301,619
Compared to previous year
👩🏻💻 Developer Ready: A comprehensive JavaScript testing solution. Works out of the box for most JavaScript projects.
🏃🏽 Instant Feedback: Fast, interactive watch mode only runs test files related to changed files.
📸 Snapshot Testing: Capture snapshots of large objects to simplify testing and to analyze how they change over time.
See more on jestjs.io
Install Jest using yarn
:
1yarn add --dev jest
Or npm
:
1npm install --save-dev jest
Note: Jest documentation uses yarn
commands, but npm
will also work. You can compare yarn
and npm
commands in the yarn docs, here.
Let's get started by writing a test for a hypothetical function that adds two numbers. First, create a sum.js
file:
1function sum(a, b) { 2 return a + b; 3} 4module.exports = sum;
Then, create a file named sum.test.js
. This will contain our actual test:
1const sum = require('./sum'); 2 3test('adds 1 + 2 to equal 3', () => { 4 expect(sum(1, 2)).toBe(3); 5});
Add the following section to your package.json
:
1{ 2 "scripts": { 3 "test": "jest" 4 } 5}
Finally, run yarn test
or npm test
and Jest will print this message:
1PASS ./sum.test.js 2✓ adds 1 + 2 to equal 3 (5ms)
You just successfully wrote your first test using Jest!
This test used expect
and toBe
to test that two values were exactly identical. To learn about the other things that Jest can test, see Using Matchers.
You can run Jest directly from the CLI (if it's globally available in your PATH
, e.g. by yarn global add jest
or npm install jest --global
) with a variety of useful options.
Here's how to run Jest on files matching my-test
, using config.json
as a configuration file and display a native OS notification after the run:
1jest my-test --notify --config=config.json
If you'd like to learn more about running jest
through the command line, take a look at the Jest CLI Options page.
Based on your project, Jest will ask you a few questions and will create a basic configuration file with a short description for each option:
1yarn create jest
To use Babel, install required dependencies via yarn
:
1yarn add --dev babel-jest @babel/core @babel/preset-env
Configure Babel to target your current version of Node by creating a babel.config.js
file in the root of your project:
1// babel.config.js 2module.exports = { 3 presets: [['@babel/preset-env', {targets: {node: 'current'}}]], 4};
The ideal configuration for Babel will depend on your project. See Babel's docs for more details.
Jest will set process.env.NODE_ENV
to 'test'
if it's not set to something else. You can use that in your configuration to conditionally setup only the compilation needed for Jest, e.g.
1// babel.config.js 2module.exports = api => { 3 const isTest = api.env('test'); 4 // You can use isTest to determine what presets and plugins to use. 5 6 return { 7 // ... 8 }; 9};
Note:
babel-jest
is automatically installed when installing Jest and will automatically transform files if a babel configuration exists in your project. To avoid this behavior, you can explicitly reset thetransform
configuration option:
1// jest.config.js 2module.exports = { 3 transform: {}, 4};
Jest can be used in projects that use webpack to manage assets, styles, and compilation. webpack does offer some unique challenges over other tools. Refer to the webpack guide to get started.
Jest can be used in projects that use vite to serves source code over native ESM to provide some frontend tooling, vite is an opinionated tool and does offer some out-of-the box workflows. Jest is not fully supported by vite due to how the plugin system from vite works, but there is some working examples for first-class jest integration using the vite-jest
, since this is not fully supported, you might as well read the limitation of the vite-jest
. Refer to the vite guide to get started.
Jest can be used in projects that use parcel-bundler to manage assets, styles, and compilation similar to webpack. Parcel requires zero configuration. Refer to the official docs to get started.
Jest supports TypeScript, via Babel. First, make sure you followed the instructions on using Babel above. Next, install the @babel/preset-typescript
via yarn
:
1yarn add --dev @babel/preset-typescript
Then add @babel/preset-typescript
to the list of presets in your babel.config.js
.
1// babel.config.js 2module.exports = { 3 presets: [ 4 ['@babel/preset-env', {targets: {node: 'current'}}], 5+ '@babel/preset-typescript', 6 ], 7};
However, there are some caveats to using TypeScript with Babel. Because TypeScript support in Babel is purely transpilation, Jest will not type-check your tests as they are run. If you want that, you can use ts-jest instead, or just run the TypeScript compiler tsc separately (or as part of your build process).
Learn more about using Jest on the official site!
Show the world you're using Jest →
1[](https://github.com/jestjs/jest) 2[](https://github.com/jestjs/jest) 3[](https://github.com/jestjs/jest)
Development of Jest happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving Jest.
Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.
Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Jest.
To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.
This project exists thanks to all the people who contribute.
Thank you to all our backers! 🙏
Support this project by becoming a sponsor. Your logo will show up here with a link to your website.
Jest is MIT licensed.
Copyright Contributors to the Jest project.
No vulnerabilities found.
No security vulnerabilities found.