wallet-core/lib/wallet/cryptoApi-test.ts
2016-11-08 16:52:03 +01:00

10 lines
256 B
TypeScript

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();
});