From 112d372804ec4c68d54be704568f1dcac1b3935e Mon Sep 17 00:00:00 2001 From: Tatyana Kostromskaya <32135588+takost@users.noreply.github.com> Date: Wed, 29 Nov 2023 15:52:57 +0000 Subject: [PATCH] Add --forceExit for jest --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3f6e01a..4589ea2 100644 --- a/package.json +++ b/package.json @@ -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" },