jestjs/jest

Delightful JavaScript Testing.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 40 minutes ago
Added to GitGenius on April 8th, 2021
Created on December 10th, 2013
Open Issues & Pull Requests: 182 (+0)
Number of forks: 6,731
Total Stargazers: 45,470 (+0)
Total Subscribers: 603 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 12.5 days
Mean response time: 267.3 days
90th percentile: 1271.6 days
Tracked items: 571

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 96% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "Documentation :book:" is answered fastest, typically in about 21 hours, while ":boom: Regression" waits about 6 months. Only 2% of issues opened in the past year have been closed. Three people close 73% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 118
New in 7 days: 7
Closed in 7 days: 6
Avg open age: 1,570 days
Stale 30+ days: 86
Stale 90+ days: 76

Recent activity

Opened in 7 days: 5
Closed in 7 days: 6
Comments in 7 days: 10
Events in 7 days: 24

Top labels

  • Stale (1,141)
  • Needs Triage (1,096)
  • Bug Report (1,092)
  • :rocket: Feature Request (324)
  • Pinned (124)
  • Help Wanted (101)
  • Documentation :book: (76)
  • :speech_balloon: Question (73)

Detailed Description

Jest is a comprehensive JavaScript testing framework written in TypeScript that provides a complete testing solution designed to work out of the box for most JavaScript projects. The repository, maintained at jestjs/jest, emphasizes developer experience through features like instant feedback via fast interactive watch mode that only runs tests related to changed files, and snapshot testing capabilities that allow developers to capture snapshots of large objects to simplify testing and track changes over time.

The framework is built to support multiple JavaScript ecosystems and build tools. According to the README, Jest integrates with Babel, webpack, Vite, and Parcel, and provides TypeScript support through Babel transpilation or the ts-jest alternative. The testing framework includes a command-line interface with various useful options and a configuration system that can be automatically generated based on project needs. Jest's core functionality centers on assertion matching through methods like expect and toBe, with comprehensive matcher documentation available on the official jestjs.io site.

The repository shows significant community engagement and maintenance activity.

Jest's classification spans multiple testing domains including automated testing, unit tests, integration tests, snapshot testing, behavior-driven development, test-driven development, mocking functions and libraries, assertions, code coverage analysis, and specific support for React applications and the JAMstack ecosystem. The framework is particularly notable for its React support and snapshot testing capabilities, which are highlighted as core features in the repository description.

This indicates Jest's integration into broader development ecosystems and its adoption by major technology organizations. The repository is released under the MIT license and includes comprehensive documentation covering getting started guides, configuration options, API references, and integration guides for various build tools and frameworks.

Jest's approach emphasizes zero-configuration setup for many projects while allowing detailed customization through babel.config.js, webpack configuration, and other tool-specific settings. The framework includes built-in support for watch mode, command-line notifications, and configuration file generation, making it accessible to developers of varying experience levels. The contributing guide and good first issues label indicate an active effort to onboard new contributors to the project.