Ghost/ghost/core/.c8rc.e2e.json
Daniel Lockyer 559cfba648
Reduced coverage to accommodate Node 18 discrepancies
- it seems Node 18 produces slightly different coverage than other
  versions
- this commit lowers the coverage threshold until we build it up again
2023-03-22 09:59:55 +01:00

27 lines
557 B
JSON

{
"all": true,
"check-coverage": true,
"reporter": [
"html-spa",
"text-summary",
"cobertura"
],
"reportsDir": "./coverage-e2e",
"statements": 86,
"branches": 85,
"functions": 87,
"lines": 86,
"include": [
"core/{*.js,frontend,server,shared}"
],
"exclude": [
"core/frontend/src/**",
"core/frontend/public/**",
"core/frontend/helpers/**",
"core/server/data/migrations/**",
"core/server/data/schema/schema.js",
"!core/server/data/migrations/utils.js",
"core/server/web/api/testmode/**"
]
}