From d0a0695fb5d34996850723f7d4b1b59c3df909c2 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 3 Nov 2016 00:47:22 +0100 Subject: test harness for both browser and node --- lib/wallet/emscriptif-test.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/wallet/emscriptif-test.ts (limited to 'lib/wallet/emscriptif-test.ts') diff --git a/lib/wallet/emscriptif-test.ts b/lib/wallet/emscriptif-test.ts new file mode 100644 index 000000000..a3a9229bb --- /dev/null +++ b/lib/wallet/emscriptif-test.ts @@ -0,0 +1,11 @@ +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(); +}); -- cgit v1.2.3