aboutsummaryrefslogtreecommitdiff
path: root/test/tests
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-02-29 18:03:02 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-02-29 18:03:02 +0100
commitc962e9402123900c53967c14cf809ea10576cdb8 (patch)
treee7df9cfdd6fceae30fb99c8ec6be5e07c8b153a8 /test/tests
parent30ee3320c788129b258ed8b42f4fc63d28431e2f (diff)
downloadwallet-core-c962e9402123900c53967c14cf809ea10576cdb8.tar.xz
restructure
Diffstat (limited to 'test/tests')
-rw-r--r--test/tests/taler.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/tests/taler.ts b/test/tests/taler.ts
new file mode 100644
index 000000000..14130f9af
--- /dev/null
+++ b/test/tests/taler.ts
@@ -0,0 +1,24 @@
+import * as Emsc from '../../lib/wallet/emscriptif';
+
+
+declare var HttpMockLib;
+
+export function declareTests(assert, context, it) {
+
+ it("works!", function() {
+ let x = new Emsc.Amount({value: 42, fraction: 42, currency: "EUR"});
+ let j = x.toJson();
+ assert("value" in j);
+ });
+
+
+ it("retries", function() {
+ let m = new HttpMockLib();
+ /*m.intercept()
+ .matchUrlContains()
+ .counterEquals(0)
+ .count()
+ .sen*/
+ })
+
+} \ No newline at end of file