I'm setting up the tests for my Vue project (with TypeScript) using the Jest framework. Everything seems to work alright, except with the @
symbol in my imports, e.g., import { Foo } from '@/bar
. Whether it's in my test files or in the source code, it doesn't understand it and returns:
Cannot find module '@/store' from 'src/tests/bonjour.spec.ts'
Here is my Jest configuration in package.json
:
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"testURL": "http://localhost/",
"collectCoverage": true,
"collectCoverageFrom": ["**/*.{ts,vue}", "!**/node_modules/**"],
"coverageReporters": ["html", "text-summary"]
}
Somebody has any idea how to make it work properly?
Thank you
Aucun commentaire:
Enregistrer un commentaire