标签: angular unit-testing jasmine karma-runner
在我新创建的角度项目中,我想解析日志文件。为了为此编写测试,我需要在测试中加载不同的日志文件。我该怎么办?
我尝试过:
const data: any = require('./logFile.log');
但是它导致:
Module parse failed: Invalid number (2:8) You may need an appropriate loader to handle this file type.
有什么想法吗?