diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-07 13:24:55 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-07 13:24:55 +0530 |
commit | 45259427776cbacde5548e89776fdf52828f6434 (patch) | |
tree | de41a3356c1322dd4290afc181d729f8aa62a4b4 | |
parent | 5ab2e235c0cb52c5e0b88c1ee68a0ff992188a23 (diff) |
output test directory at the beginning
-rw-r--r-- | packages/taler-integrationtests/src/harness.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/taler-integrationtests/src/harness.ts b/packages/taler-integrationtests/src/harness.ts index a0824f49a..13487fb08 100644 --- a/packages/taler-integrationtests/src/harness.ts +++ b/packages/taler-integrationtests/src/harness.ts @@ -914,6 +914,7 @@ export function runTest(testMain: (gc: GlobalTestState) => Promise<void>) { ), }); updateCurrentSymlink(gc.testDir); + console.log("running test in directory", gc.testDir); await testMain(gc); } catch (e) { console.error("FATAL: test failed with exception", e); |