mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
8 lines
139 B
TypeScript
8 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");
|
||
|
}
|
||
|
});
|