Configure Jest to use it with NodeJS ECMAScript Modules
Initialize your application:
npm init
To use ES modules, add type: "module" to package.json file.
Install Jest
npm i jest
Initialize Jest
npm init jest@latest
In jest.config.mjs file: de-comment transform key and assign it a value like tr...
ayanabilothman.hashnode.dev1 min read