aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/cryptoApi-test.ts
blob: ea3045c2964f68ccbc8c2b668f1e2e3419abe092 (plain)
1
2
3
4
5
6
7
8
9
import {CryptoApi} from "./cryptoApi";
import {test, TestLib} from "testlib/talertest";

test("string hashing bla", async (t: TestLib) => {
  let crypto = new CryptoApi();
  let s = await crypto.hashString("hello taler");
  console.log(s);
  t.pass();
});