ECMAScript Modules
Jest ships with experimental support for ECMAScript Modules (ESM).
The implementation may have bugs and lack features. For the latest status check out the issue and the label on the issue tracker.
Also note that the APIs Jest uses to implement ESM support are still considered experimental by Node (as of version 18.8.0
).
With the warnings out of the way, this is how you activate ESM support in your tests.
-
Ensure you either disable code transforms by passing
transform: {}
or otherwise configure your transformer to emit ESM rather than the default CommonJS (CJS). -
Execute
node
with--experimental-vm-modules
, e.g.node --experimental-vm-modules node_modules/jest/bin/jest.js
orNODE_OPTIONS=--experimental-vm-modules npx jest
etc.On Windows, you can use
cross-env
to be able to set environment variables.If you use Yarn, you can use
yarn node --experimental-vm-modules $(yarn bin jest)
. This command will also work if you use Yarn Plug'n'Play.If your codebase includes ESM imports from
*.wasm
files, you do not need to pass--experimental-wasm-modules
tonode
. Current implementation of WebAssembly imports in Jest relies on experimental VM modules, however, this may change in the future. -
Beyond that, we attempt to follow
node
's logic for activating "ESM mode" (such as looking attype
inpackage.json
or.mjs
files), see their docs for details. -
If you want to treat other file extensions (such as
.jsx
or.ts
) as ESM, please use theextensionsToTreatAsEsm
option.