运行npm run test
时出现以下错误。
"test": "ng test --code-coverage --single-run --browsers=ChromeHeadless --reporters=junit,progress",
我尝试排除以下方面的scss文件: tsconfig.spec.json
,
"exclude": [
"node_modules",
"**/*.scss",
"../node_modules/**/*",
"../node_modules/**/*",
]
但是没有运气。
伙计们,我在以角度运行测试时遇到此错误
错误[karma]:错误:(使用值代替错误的实例) CssSyntaxError:无法解析“ ../images/session-timeout.png” 'C:\ new1 \ GEP.BillofMaterial.Web \ GEP.BillOfMaterial.NG5 \ node_modules \ smart-notification \ src'
我发现,如果将'../images/session-timeout.png
更改为/../images/session-timeout.png
都可以,但是由于css位于node_modules
文件夹中,因此更改引用不是一种选择