node/.nycrc
Benjamin Coe 7657f62b18
test: add windows and C++ coverage
Collect Windows and C++ coverage. Configure codecov so that
comments are more concise and are only left when coverage
varies.

PR-URL: https://github.com/nodejs/node/pull/35670
Fixes: https://github.com/nodejs/node/issues/35696
Refs: https://github.com/nodejs/node/pull/35653
Refs: https://github.com/nodejs/node/issues/35646
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2020-10-21 19:41:08 -07:00

22 lines
332 B
JSON

{
"exclude": [
"coverage/**",
"test/**",
"tools/**",
"benchmark/**",
"deps/**"
],
"reporter": [
"html",
"text",
"cobertura"
],
"lines": 95,
"branches": "93",
"statements": "95",
"temp-directory": "coverage/tmp",
"omit-relative": false,
"resolve": "./lib",
"wrapper-length": 0
}