我在我的项目中使用带打字稿的笑话。我无法使用identity-obj-proxy为所有.ts文件定义文件,但.js文件可以正常工作。
这是我的tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"lib"
]
}
这是我开玩笑的配置:
"jest": {
"unmockedModulePathPatterns": [
"React"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(d\\.ts|ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/src/**/*.test.+(ts|tsx|js)"
],
"setupFiles": [
"raf/polyfill"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"coverageDirectory": "<rootDir>/jest",
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/*.d.{ts,tsx}",
"!**/*.scss.ts",
"!**/models/**",
"!**/node_modules*/**"
"!**/services/http.ts"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy",
"^resx-strings/en-us.json": "<rootDir>/node_modules/@microsoft/sp-core-library/lib/resx-strings/en-us.json"
},
"reporters": [
"default",
"jest-junit"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 75,
"lines": 75,
"statements": 75
}
}
}
我的测试文件(.ts):
import styles from './Somefile.module.scss';
describe('Test identity proxy', () => {
test('undefined returned', () => {
expect(styles.notundefined).toBe(undefined);
}
});
如果我将文件另存为.js,那么似乎一切正常,但.ts或.tsx文件中却没有。
答案 0 :(得分:1)
尝试将您的scss文件导入为
import * as styles from './Somefile.module.scss';
identity-obj-proxy存在一个问题,该问题阻止了标准导入语法在TypeScript中工作,但由于某种原因,以符号形式进行导入*可以正常工作。
答案 1 :(得分:1)
正如@Nathanael怀疑的那样,我相信 identity-object-proxy 模块中存在错误。
对于我来说,它在使用时不起作用:
import * as styles from './Somefile.module.scss';
相反,我关注了@Nathanael的链接,很高兴找到@joaovieira的解决方法。他创建了自己的身份对象代理版本
module.exports = new Proxy(
{},
{
get: function getter(target, key) {
if (key === '__esModule') {
// True instead of false to pretend we're an ES module.
return true;
}
return key;
},
},
);
他包括在jest.config.js中的内容如下:
module.exports = {
...
moduleNameMApper: {
'\\.(jpg|jpeg|png|gif|webp|svg)$': 'identity-obj-proxy',
'\\.(css|scss)$': '<rootDir>/.jest/identity-obj-proxy-esm.js',
}
};
要查看他的完整答案,请访问https://github.com/keyz/identity-obj-proxy/issues/8#issuecomment-430241345
答案 2 :(得分:0)
我使用的是Jest 24,遇到了类似的问题(如果穿着不同的衣服不是同一问题)
当我使用ES6导入在JS中包含SASS或CSS文件时,遇到了问题,幸运的是,有一个简单的解决方案。
按照Jest文档的建议,将以下转换添加到package.json
"transform": {
"\\.(css|less|sass|scss)$": "<rootDir>/test/mock/styleMock.js"
}
按照Jest网站上的说明,创建styleMock.js文件,但不仅仅返回对象或字符串,还包括一个“处理”函数,该函数返回一个字符串来解决问题,类似这样。
module.exports = {
process: function() {
return "";
}
};
如果您的目的只是继续编写测试(或者如果您正巧从像我以前那样从较旧的框架中迁移过来,则进行修复),这将使Jest感到安心。 CSS ES6导入不再是问题。
希望这提供了以前的解决方案的最新版本,该解决方案对我“几乎有效”!