Chore: Renamed test directory to e2e-tests for added clarity

This commit is contained in:
Thom Werring 2024-03-23 14:09:33 +01:00
parent e186107da3
commit a3b541f133
4 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \\\"src/**/*.ts\\\" \\\"e2e-tests/**/*.ts\\\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
@ -17,7 +17,7 @@
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:e2e": "jest --config e2e-tests/jest-e2e.json",
"prepare": "husky install"
},
"dependencies": {

View File

@ -1,4 +1,5 @@
{
"extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
"exclude": ["node_modules",
"e2e-tests", "dist", "**/*spec.ts"]
}