I'm trying to run some tests with Jest but I keep getting an error. It's something to do with a TypeScript config file, I already searched but didn't find much. I'm using NodeJS, TypeORM with TypeScript.
I'm getting this error when running yarn test
:
Error: Jest: Failed to parse the TypeScript config file
C:\Users\demis\Documents\Projects\Personal\nlw_node\jest.config.ts TypeError: registerer.enabled is not a function*** at readConfigFileAndSetRootDir (C:\Users\demis\Documents\Projects\Personal\nlw_node\node_modules\jest-config\build\readConfigFileAndSetRootDir.js:150:13) at readConfig (C:\Users\demis\Documents\Projects\Personal\nlw_node\node_modules\jest-config\build\index.js:217:18) at readConfigs (C:\Users\demis\Documents\Projects\Personal\nlw_node\node_modules\jest-config\build\index.js:406:26) at runCLI (C:\Users\demis\Documents\Projects\Personal\nlw_node\node_modules@jest\core\build\cli\index.js:230:59) at Object.run (C:\Users\demis\Documents\Projects\Personal\nlw_node\node_modules\jest-cli\build\cli\index.js:163:37)
First.test.ts
:
describe("First", () => {
it("should", () => {
expect(2 + 2).toBe(4);
});
});
jest.config.ts
:
export default {
bail: true,
clearMocks: true,
coverageProvider: "v8",
preset: "ts-jest",
testEnvironment: "node",
testMatch: ["**/tests/*.test.ts"]
};
tsconfig.json
:
{
"compilerOptions": {
"lib": [
"es5",
"es6"
],
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
}
}
package.json
:
{
"name": "nlw_node",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^8.0.29",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.3",
"ts-node": "3.3.0",
"typescript": "^4.2.3"
},
"dependencies": {
"body-parser": "^1.18.1",
"express": "^4.15.4",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.31",
"uuid": "^8.3.2"
},
"scripts": {
"start": "nodemon src/index.ts",
"typeorm": "ts-node node_modules/typeorm/cli.js",
"test": "jest"
}
}
ormconfig.ts
:
{
"type": "mysql",
"host": "localhost",
"port": 3306,
"username": "root",
"password": "root",
"database": "nlw_node",
"synchronize": true,
"logging": false,
"entities": ["src/api/models/**.ts"],
"migrations": ["src/database/migrations/**.ts"],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "./src/database/migrations",
"subscribersDir": "src/subscriber"
}
}
Remove ts-node
and install ts-node-dev
instead. This worked for me!
I had exactly the same error this am, trying to run tests in jest with Angular and Typescript. My problem was solved by re-installing jest: npm install --save-dev jest
This then showed an underlying configuration issue with my set up - but at least I don't see the failed error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With