[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-wallet-core] 03/03: exit from worker process
From: |
gnunet |
Subject: |
[taler-wallet-core] 03/03: exit from worker process |
Date: |
Wed, 13 Jan 2021 13:48:36 +0100 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository wallet-core.
commit e70144405cee1a2d2d0ad24b78bf610eba6cdb8d
Author: Florian Dold <florian@dold.me>
AuthorDate: Wed Jan 13 13:48:28 2021 +0100
exit from worker process
---
.../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
index 6caea138..3b1ea496 100644
--- 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);
+ });
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.