From 6232915c9825c836e43060b78d90ba2b8769f630 Mon Sep 17 00:00:00 2001 From: Anton Platonov Date: Mon, 22 May 2023 10:57:40 +0300 Subject: [PATCH] test(TypeScript): prevent hangups of TypeScrpt tests on CI (#967) --- .mocharc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.mocharc.json b/.mocharc.json index aea4bae15d..74f749404f 100644 --- a/.mocharc.json +++ b/.mocharc.json @@ -1,4 +1,5 @@ { "extension": ["ts", "mts", "cts", "js", "mjs", "cjs"], - "loader": "tsx" + "loader": "tsx", + "exit": true }