我试图通过指定配置文件来运行jest。我正在使用的命令行是
"test": "jest -—config jest/jest.config.js",
我的jest.config.js文件如下所示
module.exports = {
bail: true,
verbose: true,
moduleNameMapper: {
'\\.(css|jpg|png)$': '<rootDir>/empty-module.js-'
}
};
然而,当我运行npm命令时,我不断收到以下错误
validateCLIOptions.js:62 throw createCLIValidationError(unrecognizedOptions,allowedOptions); ^
←[31m←[1m←[1m●←[1m无法识别的CLI参数←[22m:
答案 0 :(得分:0)
您需要另一个--
,否则参数会发送到npm
而不是jest
"jest -- --config jest/jest.config.js",