mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-05-31 07:11:00 +02:00
Given that there's a few unit-tests for `web/` code that runs in Node.js, it seems reasonable to include that folder in the coverage report.
15 lines
378 B
JSON
15 lines
378 B
JSON
{
|
|
"reporter": ["text", "html", "lcov"],
|
|
"include": [
|
|
"build/lib-legacy/core/**/*.js",
|
|
"build/lib-legacy/display/**/*.js",
|
|
"build/lib-legacy/shared/**/*.js",
|
|
"build/lib-legacy/web/**/*.js"
|
|
],
|
|
"exclude": ["build/lib-legacy/test/**"],
|
|
"all": false,
|
|
"check-coverage": false,
|
|
"report-dir": "./build/coverage",
|
|
"temp-directory": "./build/.c8_output"
|
|
}
|