Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Module <rootDir>/node_modules/jest-preset-angular/preprocessor.js in the transform option was not found

When switching from karma-jasmine to jest for my Angular 7 application, I am getting the following error :

Validation Error:

  Module <rootDir>/node_modules/jest-preset-angular/preprocessor.js in the transform option was not found.
         <rootDir> is: C:\newAdminJestTest\jest-angular-example

  Configuration Documentation:
  https://jestjs.io/docs/configuration.html

I have been following this guide for the switch : https://blog.skarby.info/jest-with-angular/

The test cases seem to run fine if I remove the transform attribute from the jest object in package.json. However, I get the above error when running with the transform attribute.

Here is my package.json :

{
  "name": "jest-angular-example",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:ci": "jest -ci --runInBand",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~7.2.0",
    "@angular/common": "~7.2.0",
    "@angular/compiler": "~7.2.0",
    "@angular/core": "~7.2.0",
    "@angular/forms": "~7.2.0",
    "@angular/platform-browser": "~7.2.0",
    "@angular/platform-browser-dynamic": "~7.2.0",
    "@angular/router": "~7.2.0",
    "@types/jest": "^24.0.13",
    "core-js": "^2.5.4",
    "rxjs": "~6.3.3",
    "tslib": "^1.9.0",
    "zone.js": "~0.8.26"
  },
  "devDependencies": {
    "@angular-builders/jest": "^8.0.1",
    "@angular-devkit/build-angular": "~0.13.0",
    "@angular/cli": "~7.3.7",
    "@angular/compiler-cli": "~7.2.0",
    "@angular/language-service": "~7.2.0",
    "@types/jsdom": "^12.2.3",
    "@types/node": "~8.9.4",
    "babel-preset-env": "^1.7.0",
    "codelyzer": "~4.5.0",
    "jest": "^24.8.0",
    "jest-createspyobj": "^1.2.2",
    "jest-preset-angular": "^7.1.1",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.11.0",
    "typescript": "~3.2.2"
  },
  "jest": {
    "preset": "jest-preset-angular",
    "setupFilesAfterEnv": [
      "<rootDir>/src/setupJest.ts"
    ],
    "transform": {
      "^.+\\.(ts|html)$": "<rootDir>/node_modules/jest-preset-angular/preprocessor.js",
      "^.+\\.js$": "babel-jest"
    }
  }
}

This is my setupJest.ts :

import 'jest-preset-angular';
import './jestGlobalMocks.ts';

This is the jestGlobalMocks.ts :

global['CSS'] = null;

const mock = () => {
  let storage = {};
  return {
    getItem: key => key in storage ? storage[key] : null,
    setItem: (key, value) => storage[key] = value || '',
    removeItem: key => delete storage[key],
    clear: () => storage = {},
  };
};

Object.defineProperty(window, 'localStorage', {value: mock()});
Object.defineProperty(window, 'sessionStorage', {value: mock()});
Object.defineProperty(document, 'doctype', {
  value: '<!DOCTYPE html>'
});
Object.defineProperty(window, 'getComputedStyle', {
  value: () => {
    return {
      display: 'none',
      appearance: ['-webkit-appearance']
    };
  }
});
/**
 * ISSUE: https://github.com/angular/material2/issues/7101
 * Workaround for JSDOM missing transform property
 */
Object.defineProperty(document.body.style, 'transform', {
  value: () => {
    return {
      enumerable: true,
      configurable: true,
    };
  },
});

My tsconfig.spec.json :

{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/spec",
    "module": "commonjs",
    "types": [
      "node",
      "jest",
      "jsdom"
    ]
  },
  "files": [
    "polyfills.ts"
  ],
  "include": [
    "**/*.spec.ts",
    "**/*.d.ts"
  ]
}

I am expecting to see the following result :

PS C:\newAdminJestTest\jest-example-master> npm run test

> [email protected] test C:\newAdminJestTest\jest-example-master
> jest

 PASS  src/app/store/todolist.effects.spec.ts (16.555s)
 PASS  src/app/app.component.spec.ts (16.836s)
 PASS  src/app/store/todolist.reducer.spec.ts
 PASS  src/app/item-list/item/item.component.spec.ts (18.045s)
 PASS  src/app/store/todolist.actions.spec.ts
 PASS  src/app/item-list/item-list.component.spec.ts
 PASS  src/app/pie-chart/pie-chart.component.spec.ts
 PASS  src/app/checkbox/checkbox.component.spec.ts
 PASS  src/app/local-storage.service.spec.ts
 PASS  src/app/window.service.spec.ts

Test Suites: 10 passed, 10 total
Tests:       68 passed, 68 total
Snapshots:   1 passed, 1 total
Time:        28.776s
Ran all test suites.

which I am getting if I remove the transform attribute from the jest object in package.json.

How do I solve this issue ?

like image 863
jackfr0st Avatar asked May 31 '19 04:05

jackfr0st


1 Answers

I resolved this issue by updating my jest.config.json file and changing the transform properties like below:

// before

...
"transform": {
    "^.+\\.(ts|js|html)$": "<rootDir>/node_modules/jest-preset-angular/preprocessor.js"
}
...

//after
...
"transform": {
    "^.+\\.(ts|js|html)$": "ts-jest"
}
...

like image 197
Saif Jerbi Avatar answered Sep 28 '22 04:09

Saif Jerbi