summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-07 11:36:18 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-07 11:36:30 +0530
commitb4a4a9e292277d88fc0faeeaa693bbdbdb0998c4 (patch)
tree74fc2c4c079a7c3bbca85c5abdae79305c514a0c
parent32755f547547ddede4fd69951bdee0beda91c4f7 (diff)
downloadwallet-core-b4a4a9e292277d88fc0faeeaa693bbdbdb0998c4.tar.gz
wallet-core-b4a4a9e292277d88fc0faeeaa693bbdbdb0998c4.tar.bz2
wallet-core-b4a4a9e292277d88fc0faeeaa693bbdbdb0998c4.zip
log file location
-rw-r--r--packages/taler-integrationtests/src/harness.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-integrationtests/src/harness.ts b/packages/taler-integrationtests/src/harness.ts
index 3a652e291..8a2436a44 100644
--- a/packages/taler-integrationtests/src/harness.ts
+++ b/packages/taler-integrationtests/src/harness.ts
@@ -883,7 +883,7 @@ export function runTest(testMain: (gc: GlobalTestState) => Promise<void>) {
let ret = 0;
try {
gc = new GlobalTestState({
- testDir: fs.mkdtempSync("taler-integrationtest-"),
+ testDir: fs.mkdtempSync(path.join(os.tmpdir(), "taler-integrationtest-")),
});
updateCurrentSymlink(gc.testDir);
await testMain(gc);