aboutsummaryrefslogtreecommitdiff
path: root/test/tests
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-02 21:13:56 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-02 21:13:56 +0100
commitdb9177bb17b508ef4a6fa1d0707d3297fbd66c56 (patch)
tree57deb5c83d13beefe3eeaef9767a92cc9335c20b /test/tests
parentd76fce80779f1fe3902d635ba6d9934927060712 (diff)
downloadwallet-core-db9177bb17b508ef4a6fa1d0707d3297fbd66c56.tar.xz
TAP-based test harness
Diffstat (limited to 'test/tests')
-rw-r--r--test/tests/taler.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/tests/taler.ts b/test/tests/taler.ts
deleted file mode 100644
index 0ffb37329..000000000
--- a/test/tests/taler.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import * as Emsc from '../../lib/wallet/emscriptif';
-
-
-declare var HttpMockLib: any;
-
-export function declareTests(assert: any, context: any, it: any) {
-
- it("calls native emscripten code", function() {
- let x = new Emsc.Amount({value: 42, fraction: 42, currency: "EUR"});
- let j = x.toJson();
- assert("value" in j);
- });
-}