diff options
author | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-04-27 16:58:17 +0200 |
---|---|---|
committer | Marcello Stanisci <marcello.stanisci@inria.fr> | 2016-04-27 16:58:17 +0200 |
commit | eae096e609a2478fb606309b6634f11b614a6866 (patch) | |
tree | 268f76fe196048d2cb583758f9949b21e78275b3 /test/tests | |
parent | 5ea6f8dd00266e1b5cf76826f54364119a295948 (diff) | |
parent | 97f3911c93c841f089f705e7edcef6a6bec45f2e (diff) |
Merge branch 'master' of ssh://taler.net/var/git/wallet-webex
Diffstat (limited to 'test/tests')
-rw-r--r-- | test/tests/taler.ts | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/test/tests/taler.ts b/test/tests/taler.ts index 14130f9af..941e8284d 100644 --- a/test/tests/taler.ts +++ b/test/tests/taler.ts @@ -5,20 +5,9 @@ declare var HttpMockLib; export function declareTests(assert, context, it) { - it("works!", function() { + 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); }); - - - it("retries", function() { - let m = new HttpMockLib(); - /*m.intercept() - .matchUrlContains() - .counterEquals(0) - .count() - .sen*/ - }) - -}
\ No newline at end of file +} |