If you encounter this error when trying to use ES6 modules with jest:
SyntaxError: Cannot use import statement outside a module
Run the tests with:
NODE_OPTIONS=--experimental-vm-modules npx jest
And add this import to your *.test.js files: import { jest } from '@jest/globals'