If you are already using ESModules in your node application, natively without babel, then this is how you can setup your jest tests to use ESModules in the same way. The official docs for this can be found here: https://jestjs.io/docs/ecmascript-modules
Note: For this to work you will need to be using node version 14 or higher.
In your package.json file, you need to do the following things:
- Set the type to module
- Disable jest code transforms by passing “transform: ”
- Run the test with the following env var:
NODE_OPTIONS=--experimental-vm-modules
Example package.json:
"type": "module",
"jest": {
"transform": {}
},
"devDependencies": {
"jest": "^26.6.3"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
},
Then in your test files, if you need to access the global jest
object, if you’re using jest mock functions for example, you have to import it like this:
import { jest } from '@jest/globals';