mirror of
https://github.com/hack-chat/main.git
synced 2024-03-22 13:20:33 +08:00
29 lines
470 B
JSON
29 lines
470 B
JSON
{
|
|
"check-coverage": true,
|
|
"per-file": true,
|
|
"lines": 80,
|
|
"statements": 80,
|
|
"functions": 80,
|
|
"branches": 80,
|
|
"include": [
|
|
"commands/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"commands/**/*.spec.js"
|
|
],
|
|
"ignore-class-method": "methodToIgnore",
|
|
"reporter": [
|
|
"html",
|
|
"lcov",
|
|
"text",
|
|
"text-summary"
|
|
],
|
|
"require": [
|
|
"dotenv/config"
|
|
],
|
|
"extension": [],
|
|
"cache": true,
|
|
"all": true,
|
|
"temp-dir": "",
|
|
"report-dir": "./.coverage"
|
|
} |