Test coverage reports; voicemsg command; debug command; refactoring

This commit is contained in:
2026-03-01 18:18:18 -08:00
parent e48e74c20e
commit 15cffb3b66
20 changed files with 3884 additions and 483 deletions

View File

@@ -20,6 +20,7 @@
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.6.11",
"c8": "^11.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.2",
@@ -34,6 +35,8 @@
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch"
"test:watch": "jest --watch",
"test:coverage": "c8 jest",
"test:ci": "c8 jest"
}
}