10 lines
256 B
TypeScript
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();
|
|
});
|