About 92 results
Open links in new tab
  1. Jest · Delightful JavaScript Testing

    Jest is a JavaScript testing framework designed to ensure correctness of any JavaScript codebase. It allows you to write tests with an approachable, familiar and feature-rich API that gives you results …

  2. Getting Started - Jest

    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.

  3. Getting Started - 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 …

  4. Getting Started - Jest

    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 the …

  5. Jest 30: Faster, Leaner, Better · Jest - jestjs.io

    Jun 4, 2025 · Today we are happy to announce the release of Jest 30. This release features a substantial number of changes, fixes, and improvements. While it is one of the largest major releases …

  6. More Resources - Jest

    By now you should have a good idea of how Jest can help you test your applications. If you're interested in learning more, here's some related stuff you might want to check out.

  7. Testing Web Frameworks · Jest

    Jest is a universal testing platform, with the ability to adapt to any JavaScript library or framework. In this section, we'd like to link to community posts and articles about integrating Jest into popular JS libraries.

  8. From v29 to v30 - Jest

    Jun 10, 2025 · Upgrading Jest from v29 to v30? This guide aims to help refactoring your configuration and tests.

  9. Testing React Apps · Jest

    See React: Function and Class Components. Reminders that with Class components, we expect Jest to be used to test props and not methods directly. Now let's use React's test renderer and Jest's …

  10. Configuring Jest · Jest

    Jest runs the code of your project as JavaScript, hence a transformer is needed if you use some syntax not supported by Node out of the box (such as JSX, TypeScript, Vue templates).