diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-08 16:52:03 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-08 16:52:03 +0100 |
commit | 5dfa8d79e1ec28093056e5f52529ee3103361534 (patch) | |
tree | 9166aa62eeb54ed87f9d754b6ad750ce05f2b6a1 /lib/wallet | |
parent | afb9fba64be1f15a3ce3ed31214a704e73e5e8bb (diff) |
fixes to test harness
Diffstat (limited to 'lib/wallet')
-rw-r--r-- | lib/wallet/cryptoApi-test.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/wallet/cryptoApi-test.ts b/lib/wallet/cryptoApi-test.ts index 6399367b1..ea3045c29 100644 --- a/lib/wallet/cryptoApi-test.ts +++ b/lib/wallet/cryptoApi-test.ts @@ -1,6 +1,9 @@ import {CryptoApi} from "./cryptoApi"; import {test, TestLib} from "testlib/talertest"; -test("string hashing", (t: TestLib) => { - +test("string hashing bla", async (t: TestLib) => { + let crypto = new CryptoApi(); + let s = await crypto.hashString("hello taler"); + console.log(s); + t.pass(); }); |