back tests 80+

This commit is contained in:
iqubik
2026-03-29 03:52:43 +03:00
parent e7a63dfff0
commit 7f5aae32e7
28 changed files with 5024 additions and 9 deletions
+15 -5
View File
@@ -52,6 +52,7 @@
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@types/bcrypt": "^6.0.0",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.7",
@@ -60,6 +61,7 @@
"@types/ssh2": "^1.15.5",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
@@ -81,15 +83,23 @@
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"rootDir": ".",
"testRegex": "test/.*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
"transformIgnorePatterns": [
"node_modules/(?!(uuid)/)"
],
"coverageDirectory": "../coverage",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/src/$1"
},
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.module.ts",
"!src/main.ts"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}