From v27 to v28

Upgrading Jest from v27 to v28? This guide aims to help refactoring your configuration and tests.

info" class="reference-link">From v27 to v28 - 图3info

See changelog for the full list of changes.

Compatibility

The supported Node versions are 12.13, 14.15, 16.10 and above.

If you plan to use type definitions of Jest (or any of its packages), make sure to install TypeScript version 4.3 or above.

Configuration Options

extraGlobals

The extraGlobals option was renamed to sandboxInjectedGlobals:

  1. - extraGlobals: ['Math']
  2. + sandboxInjectedGlobals: ['Math']

timers

The timers option was renamed to fakeTimers. See Fake Timers section below for details.

testURL

The testURL option is removed. Now you should use testEnvironmentOptions to pass url option to JSDOM environment:

  1. - testURL: 'https://jestjs.io'
  2. + testEnvironmentOptions: {
  3. + url: 'https://jestjs.io'
  4. + }

Babel config

babel-jest now passes root: config.rootDir to Babel when resolving configuration. This improves compatibility when using projects with differing configuration, but it might mean your babel config isn’t picked up in the same way anymore. You can override this option by passing options to babel-jest in your configuration.

expect

In versions prior to Jest 28, toHaveProperty checked for equality instead of existence, which means that e.g. expect({}).toHaveProperty('a', undefined) is a passing test. This has been changed in Jest 28 to fail.

Additionally, if you import expect directly, it has been changed from default export to a named export.

  1. - import expect from 'expect';
  2. + import {expect} from 'expect';
  1. - const expect = require('expect');
  2. + const {expect} = require('expect');

Fake Timers

Fake timers were refactored to allow passing options to the underlying @sinonjs/fake-timers.

fakeTimers

The timers configuration option was renamed to fakeTimers and now takes an object with options:

  1. - timers: 'real'
  2. + fakeTimers: {
  3. + enableGlobally: false
  4. + }
  1. - timers: 'fake'
  2. + fakeTimers: {
  3. + enableGlobally: true
  4. + }
  1. - timers: 'modern'
  2. + fakeTimers: {
  3. + enableGlobally: true
  4. + }
  1. - timers: 'legacy'
  2. + fakeTimers: {
  3. + enableGlobally: true,
  4. + legacyFakeTimers: true
  5. + }

jest.useFakeTimers()

An object with options now should be passed to jest.useFakeTimers() as well:

  1. - jest.useFakeTimers('modern')
  2. + jest.useFakeTimers()
  1. - jest.useFakeTimers('legacy')
  2. + jest.useFakeTimers({
  3. + legacyFakeTimers: true
  4. + })

If legacy fake timers are enabled in Jest config file, but you would like to disable them in a particular test file:

  1. - jest.useFakeTimers('modern')
  2. + jest.useFakeTimers({
  3. + legacyFakeTimers: false
  4. + })

Test Environment

Custom Environment

The constructor of test environment class now receives an object with Jest’s globalConfig and projectConfig as its first argument. The second argument is now mandatory.

  1. class CustomEnvironment extends NodeEnvironment {
  2. - constructor(config) {
  3. - super(config);
  4. + constructor({globalConfig, projectConfig}, context) {
  5. + super({globalConfig, projectConfig}, context);
  6. + const config = projectConfig;

jsdom

If you are using JSDOM test environment, jest-environment-jsdom package now must be installed separately:

  • npm
  • Yarn
  1. npm install --save-dev jest-environment-jsdom
  1. yarn add --dev jest-environment-jsdom

Test Runner

If you are using Jasmine test runner, jest-jasmine2 package now must be installed separately:

  • npm
  • Yarn
  1. npm install --save-dev jest-jasmine2
  1. yarn add --dev jest-jasmine2

Transformer

process() and processAsync() methods of a custom transformer module cannot return a string anymore. They must always return an object:

  1. process(sourceText, sourcePath, options) {
  2. - return `module.exports = ${JSON.stringify(path.basename(sourcePath))};`;
  3. + return {
  4. + code: `module.exports = ${JSON.stringify(path.basename(sourcePath))};`,
  5. + };
  6. }

package.json exports

Jest now includes full support for package exports, which might mean that files you import are not resolved correctly. Additionally, Jest now supplies more conditions. jest-environment-node has node and node-addons, while jest-environment-jsdom has browser. As a result, you might e.g. get browser code which assumes ESM, when Jest provides ['require', 'browser']. You can either report a bug to the library (or Jest, the implementation is new and might have bugs!) or override the conditions Jest passes.

TypeScript

info" class="reference-link">From v27 to v28 - 图4info

The TypeScript examples from this page will only work as document if you import jest from '@jest/globals':

  1. import {jest} from '@jest/globals';

jest.fn()

jest.fn() now takes only one generic type argument. See Mock Functions API page for more usage examples.

  1. import add from './add';
  2. - const mockAdd = jest.fn<ReturnType<typeof add>, Parameters<typeof add>>();
  3. + const mockAdd = jest.fn<typeof add>();
  1. - const mock = jest.fn<number, []>()
  2. + const mock = jest.fn<() => number>()
  3. .mockReturnValue(42)
  4. .mockReturnValueOnce(12);
  5. - const asyncMock = jest.fn<Promise<string>, []>()
  6. + const asyncMock = jest.fn<() => Promise<string>>()
  7. .mockResolvedValue('default')
  8. .mockResolvedValueOnce('first call');