Skip to content

Commit 9892c89

Browse files
committed
removing "--forceExit" from test command
1 parent aea11a9 commit 9892c89

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/api-gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"start:debug": "yarn start --debug --watch",
1818
"start:dev": "yarn start --watch",
1919
"start:prod": "node dist/main",
20-
"test": "jest --detectOpenHandles --forceExit",
20+
"test": "jest --detectOpenHandles",
2121
"test:cov": "jest --coverage",
2222
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
2323
"test:e2e": "jest --config ./test/jest-e2e.json",

apps/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"start:debug": "yarn start --debug --watch",
1818
"start:dev": "yarn start --watch",
1919
"start:prod": "node dist/main",
20-
"test": "jest --detectOpenHandles --forceExit",
20+
"test": "jest --detectOpenHandles",
2121
"test:cov": "jest --coverage",
2222
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
2323
"test:e2e": "jest --config ./test/jest-e2e.json",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"prestart": "yarn download-models",
1515
"prebuild": "yarn download-models",
1616
"start": "next start",
17-
"test": "jest --detectOpenHandles --forceExit ",
17+
"test": "jest --detectOpenHandles",
1818
"test:watch": "jest --watch",
1919
"test:coverage": "jest --coverage"
2020
},

0 commit comments

Comments
 (0)