You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
|
9 months ago
|
function sum(a: number, b: number) {
|
||
|
|
return a + b;
|
||
|
|
}
|
||
|
|
|
||
|
|
describe("sum module", () => {
|
||
|
|
test("adds 1 + 2 to equal 3", () => {
|
||
|
|
expect(sum(1, 2)).toBe(3);
|
||
|
|
});
|
||
|
|
});
|