testMatch: ["**/+(*.)+(spec|test).+(ts|js)?(x)"],
transform: {
"^.+\\.(ts|js|html)$": "ts-jest"
},
resolver: "@nrwl/jest/plugins/resolver",
moduleFileExtensions: ["ts", "js", "html"],
coverageReporters: ["html"]
};
jest.config.js той части приложения, с которой работаю в данный момент
module.exports = {
name: "myapp",
preset: "../../jest.config.js",
transform: {
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "@nrwl/react/plugins/jest",
"^.+\\.[tj]sx?$": "ts-jest"
},
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "html"],
coverageDirectory: "../../coverage/apps/myapp",
setupFiles: ["<rootDir>/src/setupTests.ts"]
};
уже всё у себя перещупал, не знаю, вот мой репозиторий, тут ts + react + jest, может что найдёшь интересное https://github.com/YoungProducer/zno-client-mobile, тут всё работает
Обсуждают сегодня