我正在使用摩卡测试我的nodejs代码。我想获得一份覆盖率报告。我找到了我要运行的JSCover。但是我越来越

ReferenceError: _$jscoverage is not defined


我正在执行:

   java -jar ../tools/jscover/JSCover-all.jar --no-instrument=node_modules -fs api/ api-coverage

test:
    @NODE_ENV=test ./node_modules/.bin/mocha \
        --require expect.js \
        --reporter $(REPORTER) \
        --timeout 2000 \
        --growl \
        $(TESTS)
    COVERAGE_ENABLED=1 $(MAKE) test REPORTER=html-file-cov


有什么帮助吗?

最佳答案

我无法为您提供JSCover,但我强烈建议您改用完全基于Javascript的伊斯坦布尔。此处的详细信息:Code coverage with Mocha

10-04 15:32