It does not make sense to check coverage for `next.config.js`. This file is run by the frontend build, which seems sufficient. If that file has logic in it that is complex enough to warrant testing, it should be broken out into a separate file.
18 lines
283 B
JSON
18 lines
283 B
JSON
{
|
|
"reporter": ["lcov"],
|
|
"all": true,
|
|
"exclude": [
|
|
"**/*.spec.js",
|
|
"**/*.integration.js",
|
|
"dangerfile.js",
|
|
"next.config.js",
|
|
"services/**/*.tester.js",
|
|
"test-fixtures",
|
|
"scripts",
|
|
"coverage",
|
|
"build"
|
|
],
|
|
"silent": true,
|
|
"clean": false
|
|
}
|