From d8539157cf2277916e328d363e2cd8327ef56109 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Fri, 9 Aug 2024 15:20:35 +0200 Subject: [PATCH] exit 0 --- src/tests/testRunner.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/tests/testRunner.ts b/src/tests/testRunner.ts index 9737ebc4..ddb637a6 100644 --- a/src/tests/testRunner.ts +++ b/src/tests/testRunner.ts @@ -1,4 +1,4 @@ -import whyIsNodeRunning from 'why-is-node-running' +//import whyIsNodeRunning from 'why-is-node-running' import { globby } from 'globby' import { setupNetwork } from './networkSetup.js' import { Describe, SetupTest, teardown, TestBase } from './testBase.js' @@ -49,11 +49,10 @@ const start = async () => { throw new Error("there have been " + failures + " failures in all tests") } else { console.log(greenConsole, "there have been 0 failures in all tests", resetConsole) + process.exit(0) } - setInterval(() => { - whyIsNodeRunning() - }, 1000); + } const runTestFile = async (fileName: string, mod: TestModule) => {