wallet-core/lib/wallet/cryptoApi-test.ts

10 lines
256 B
TypeScript
Raw Normal View History

2016-11-03 00:47:22 +01:00
import {CryptoApi} from "./cryptoApi";
import {test, TestLib} from "testlib/talertest";
2016-11-08 16:52:03 +01:00
test("string hashing bla", async (t: TestLib) => {
let crypto = new CryptoApi();
let s = await crypto.hashString("hello taler");
console.log(s);
t.pass();
2016-11-03 00:47:22 +01:00
});