test: add client unit test coverage

This commit is contained in:
nav
2026-04-09 00:03:38 +00:00
parent 4322604f78
commit 824019168e
5 changed files with 1396 additions and 3 deletions

View File

@@ -19,12 +19,16 @@
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"check": "tsc -p tsconfig.json --noEmit"
"check": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"typescript": "^5.6.3"
"@types/node": "^25.5.2",
"typescript": "^5.6.3",
"vitest": "^4.1.3"
}
}