Add --forceExit for jest

This commit is contained in:
Tatyana Kostromskaya
2023-11-29 15:52:57 +00:00
parent 5e5b8b9d64
commit 112d372804

View File

@@ -9,7 +9,7 @@
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test": "jest --forceExit",
"test:watch": "jest --watch src",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},