add jest globals

This commit is contained in:
einhornimmond 2025-04-28 18:24:57 +02:00
parent 13bb5636fb
commit 131e21deaf
4 changed files with 11 additions and 2 deletions

View File

@ -33,6 +33,12 @@ admin: &admin
backend: &backend backend: &backend
- 'backend/**/*' - 'backend/**/*'
config: &config
- 'config-schema/**/*'
database: &database
- 'database/**/*'
dht_node: &dht_node dht_node: &dht_node
- 'dht-node/**/*' - 'dht-node/**/*'

View File

@ -51,8 +51,8 @@
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"sodium-native": "^3.4.1", "sodium-native": "^3.4.1",
"type-graphql": "^1.1.1", "type-graphql": "^1.1.1",
"typeorm": "^0.3.16",
"typed-rest-client": "^1.8.11", "typed-rest-client": "^1.8.11",
"typeorm": "^0.3.16",
"uuid": "^8.3.2", "uuid": "^8.3.2",
"workerpool": "^9.2.0", "workerpool": "^9.2.0",
"xregexp": "^5.1.1" "xregexp": "^5.1.1"
@ -60,6 +60,7 @@
"devDependencies": { "devDependencies": {
"@anatine/esbuild-decorators": "^0.2.19", "@anatine/esbuild-decorators": "^0.2.19",
"@eslint-community/eslint-plugin-eslint-comments": "^3.2.1", "@eslint-community/eslint-plugin-eslint-comments": "^3.2.1",
"@jest/globals": "^29.7.0",
"@types/email-templates": "^10.0.4", "@types/email-templates": "^10.0.4",
"@types/express": "^4.17.12", "@types/express": "^4.17.12",
"@types/faker": "^5.5.9", "@types/faker": "^5.5.9",

View File

@ -19,8 +19,8 @@
"@hyperswarm/dht": "^6.4.4", "@hyperswarm/dht": "^6.4.4",
"config-schema": "*", "config-schema": "*",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"dotenv": "10.0.0",
"database": "*", "database": "*",
"dotenv": "10.0.0",
"joi": "^17.13.3", "joi": "^17.13.3",
"log4js": "^6.7.1", "log4js": "^6.7.1",
"nodemon": "^2.0.20", "nodemon": "^2.0.20",
@ -30,6 +30,7 @@
}, },
"devDependencies": { "devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^3.2.1", "@eslint-community/eslint-plugin-eslint-comments": "^3.2.1",
"@jest/globals": "^29.7.0",
"@types/dotenv": "^8.2.0", "@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.2", "@types/jest": "^27.0.2",
"@types/joi": "^17.2.3", "@types/joi": "^17.2.3",

View File

@ -41,6 +41,7 @@
"uuid": "8.3.2" "uuid": "8.3.2"
}, },
"devDependencies": { "devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "4.17.12", "@types/express": "4.17.12",
"@types/jest": "^29.5.14", "@types/jest": "^29.5.14",
"@types/lodash.clonedeep": "^4.5.6", "@types/lodash.clonedeep": "^4.5.6",