invoiceninja/resources/js/src/tests/math.ts
David Bomba 6a390aedbc
Configure Jest Testing Framework for Typescript (#2519)
* Set JEST for Typescript testing

* tests
2018-11-26 10:28:22 +11:00

3 lines
No EOL
69 B
TypeScript

export function sum(x: number, y: number): number {
return x + y;
}