mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
7 lines
139 B
TypeScript
7 lines
139 B
TypeScript
const add = (a: number, b: number) => a + b;
|
|
|
|
Deno.test(function addTest() {
|
|
if (add(2, 3) !== 5) {
|
|
throw new Error("fail");
|
|
}
|
|
});
|