mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
10 lines
245 B
TypeScript
10 lines
245 B
TypeScript
|
import { add } from "./mod.ts";
|
||
|
|
||
|
// this test should not be run or linted
|
||
|
Deno.test("add", () => {
|
||
|
let unusedVar = 5; // purposefully causing a lint error to ensure it's not linted
|
||
|
if (add(1, 2) !== 3) {
|
||
|
throw new Error("fail");
|
||
|
}
|
||
|
});
|