aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/cryptoApi-test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wallet/cryptoApi-test.ts')
-rw-r--r--lib/wallet/cryptoApi-test.ts7
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();
});