diff options
Diffstat (limited to 'test/tests')
-rw-r--r-- | test/tests/taler.ts | 13 |
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); - }); -} |