Тесты: часть 1

This commit is contained in:
2025-10-28 09:58:44 +03:00
parent 21c7ddfd54
commit 6bffe6a9e1
21 changed files with 2843 additions and 3 deletions

View File

@@ -9,7 +9,11 @@
"scripts": {
"build": "bun build src/cli.ts --target=node --outdir=dist --format=esm",
"dev": "bun run src/cli.ts",
"test": "bun test"
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"dependencies": {
"@biomejs/wasm-bundler": "^2.3.0",
@@ -24,7 +28,11 @@
"@types/bun": "latest",
"@types/ejs": "^3.1.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2"
"@types/node": "^22.10.2",
"@types/tmp": "^0.2.6",
"execa": "^8.0.0",
"msw": "^2.0.0",
"tmp": "^0.2.1"
},
"peerDependencies": {
"typescript": "^5"