taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit e70144405cee1a2d2d0ad24b78bf610eba6cdb8d
parent e44b86b084ff4b2dfc53199162816be6ad32c39d
Author: Florian Dold <florian@dold.me>
Date:   Wed, 13 Jan 2021 13:48:28 +0100

exit from worker process

Diffstat:
Mpackages/taler-wallet-cli/src/integrationtests/testrunner.ts | 13+++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/packages/taler-wallet-cli/src/integrationtests/testrunner.ts b/packages/taler-wallet-cli/src/integrationtests/testrunner.ts @@ -296,8 +296,13 @@ if (runTestInstrStr) { process.send(testResult); }; - runTest().catch((e) => { - console.log(e); - process.exit(1); - }); + runTest() + .then(() => { + console.log(`test ${testName} finished in worker`); + process.exit(0); + }) + .catch((e) => { + console.log(e); + process.exit(1); + }); }