From faaeb52a14a40b30ffe90cddb84c45af55acdf93 Mon Sep 17 00:00:00 2001 From: Valya <68596159+valya@users.noreply.github.com> Date: Tue, 27 Sep 2022 13:22:00 +0100 Subject: [PATCH] fix: remove --forceExit flag from cli tests (#4211) I'm unsure what changed but it seems to just work now. Worth keeping an eye on though. --- packages/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index c51560e14d..5a7ca46595 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -30,7 +30,7 @@ "start:default": "cd bin && ./n8n", "start:windows": "cd bin && n8n", "test": "npm run test:sqlite", - "test:sqlite": "N8N_LOG_LEVEL=silent DB_TYPE=sqlite jest --forceExit", + "test:sqlite": "N8N_LOG_LEVEL=silent DB_TYPE=sqlite jest", "test:postgres": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb jest", "test:postgres:alt-schema": "DB_POSTGRESDB_SCHEMA=alt_schema npm run test:postgres", "test:mysql": "N8N_LOG_LEVEL=silent DB_TYPE=mysqldb jest",