我用jest
來測試我的typescript
文件。如何在jest測試文件中使用從typescript文件導入模塊。
import ClassA from '../classA';
jest.mock('../classA');
當我import
一個class
從我classA.ts
文件,jest
給我一個錯誤:
export default ClassA;
^^^^^^
SyntaxError: Unexpected token export
這裏是我的jest
配置在package.json
:
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.4",
"ts-jest": "^20.0.4",
"ts-node": "^3.0.2",
"typescript": "^2.3.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
設置
allowSyntheticDefaultImports
到true
附加文檔對你的回答,請 – pirs