mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-10 18:35:31 -05:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { sum } from "./math";
|
|
|
|
describe("This is a simple test", () => {
|
|
test("Check the sum of 0 + 0", () => {
|
|
expect(sum(0,0)).toBe(0);
|
|
});
|
|
});
|
|
|
|
describe("This is a simple test", () => {
|
|
test("Check the sum of 1 + 2", () => {
|
|
expect(sum(1, 2)).toBe(3);
|
|
});
|
|
});
|