使用Mocha和Istanbul时从coverage中排除文件

Sha*_* M. 25 mocha.js node.js jenkins istanbul

使用mocha和instanbul时,如何从coverage报告中排除文件夹和文件(按路径)?

我希望通过配置排除而不是

/*istanbul ignore next*/
Run Code Online (Sandbox Code Playgroud)

在每个文件中.

(Jenkins生成的报告使用)

谢谢,

Bla*_*ise 20

您可以使用-x参数忽略与特定模式匹配的文件.

 istanbul help cover

 ...
 -x <exclude-pattern> [-x <exclude-pattern>]
        one or more fileset patterns e.g. "**/vendor/**"
 ...
Run Code Online (Sandbox Code Playgroud)


Rob*_*sen 15

如果你跑步,istanbul help config你会看到伊斯坦布尔的默认配置.您可以将默认配置复制/粘贴到.istanbul.yml源树根目录下的文件中,然后将排除项存储在其中.

这是我的样子(这使得排除许多目录变得容易):

verbose: false
instrumentation:
    root: .
    extensions:
        - .js
    default-excludes: true
    excludes: ['**/tinymce/**', '**/lib/**', '**/tools/**', '**/build/**']
    embed-source: false
    variable: __coverage__
    compact: true
    preserve-comments: false
    complete-copy: false
    save-baseline: false
    baseline-file: ./coverage/coverage-baseline.json
    include-all-sources: true
    include-pid: false
    es-modules: false
reporting:
    print: summary
    reports:
        - lcov
    dir: ./tools/coverage
    watermarks:
        statements: [50, 80]
        lines: [50, 80]
        functions: [50, 80]
        branches: [50, 80]
    report-config:
        clover: {file: clover.xml}
        cobertura: {file: cobertura-coverage.xml}
        json: {file: coverage-final.json}
        json-summary: {file: coverage-summary.json}
        lcovonly: {file: lcov.info}
        teamcity: {file: null, blockName: Code Coverage Summary}
        text: {file: null, maxCols: 0}
        text-lcov: {file: lcov.info}
        text-summary: {file: null}
hooks:
    hook-run-in-context: false
    post-require-hook: null
    handle-sigint: false
check:
    global:
        statements: 0
        lines: 0
        branches: 0
        functions: 0
        excludes: []
    each:
        statements: 0
        lines: 0
        branches: 0
        functions: 0
        excludes: []
Run Code Online (Sandbox Code Playgroud)


JME*_*JME 5

我你的情况我会使用以下内容:

istanbul -x "**/pattern/to/exclude/**" cover _mocha -- --recursive -R tap test/ > test.tap && istanbul report clover –  snoof 9 hours ago 
Run Code Online (Sandbox Code Playgroud)

您可以通过添加多个-x选项来排除多个模式。