This is a jest utility that transforms esm files into cjs, so that they can be parsed by Jest.
yarn add jest-esm-transformer
- Add this to your jest config, targetting your esm files:
transform: {
'.js': 'jest-esm-transformer',
}
All the credit goes to https://github.com/onigoetz