wallet-core/extension/test/tests/taler.ts
Florian Dold 473503a246 The great modularization.
Use ES6 module syntax and SystemJS modules for everything.

Some testing stubs were added as well.
2016-01-10 20:07:42 +01:00

10 lines
264 B
TypeScript

import * as Emsc from '../../lib/wallet/emscriptif';
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);
});
}