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

12 lines
421 B
TypeScript
Raw Normal View History

2016-11-03 00:47:22 +01:00
import {test, TestLib} from "testlib/talertest";
import * as native from "./emscriptif";
test("string hashing", (t: TestLib) => {
let x = native.ByteArray.fromStringWithNull("hello taler");
let h = "8RDMADB3YNF3QZBS3V467YZVJAMC2QAQX0TZGVZ6Q5PFRRAJFT70HHN0QF661QR9QWKYMMC7YEMPD679D2RADXCYK8Y669A2A5MKQFR"
let hc = x.hash().toCrock();
console.log(`# hc ${hc}`);
t.assert(h === hc, "must equal");
t.pass();
});