Skip to content

Commit 5acad57

Browse files
committed
test: remove outdated backend tests
1 parent b599a7f commit 5acad57

File tree

7 files changed

+1235
-4313
lines changed

7 files changed

+1235
-4313
lines changed

backend/jest.config.js

-7
This file was deleted.

backend/package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
"scripts": {
1010
"dev": "ts-node-dev --respawn --files --transpile-only --no-notify --ignore-watch node_modules src/index.ts",
1111
"start": "node dist/index.js",
12-
"build": "tsc",
13-
"test": "jest --setupFiles dotenv/config"
12+
"build": "tsc"
1413
},
1514
"dependencies": {
1615
"@sentry/integrations": "^5.15.5",
@@ -35,14 +34,11 @@
3534
"@types/cors": "^2.8.6",
3635
"@types/express": "^4.17.3",
3736
"@types/graphql": "^14.5.0",
38-
"@types/jest": "^25.1.4",
3937
"@types/jsonwebtoken": "^8.3.7",
4038
"@types/module-alias": "^2.0.0",
4139
"@types/node": "^13.7.4",
4240
"@types/node-cron": "^2.0.3",
4341
"cross-env": "^7.0.1",
44-
"jest": "^25.1.0",
45-
"ts-jest": "^25.2.1",
4642
"typescript": "^3.7.5"
4743
}
48-
}
44+
}

backend/tests/resolver.test.ts

-139
This file was deleted.

backend/tests/utils.ts

-32
This file was deleted.

backend/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"*": ["./*"],
2525
"@/*": ["./*"]
2626
},
27-
"types": ["node", "jest"],
27+
"types": ["node"],
2828
"allowSyntheticDefaultImports": true,
2929
"esModuleInterop": true,
3030
"experimentalDecorators": true,
3131
"emitDecoratorMetadata": true,
3232
"forceConsistentCasingInFileNames": true
3333
},
3434
"exclude": ["node_modules"],
35-
"include": ["./src/**/*.ts", "xd.ts"]
35+
"include": ["./src/**/*.ts",]
3636
}

0 commit comments

Comments
 (0)