mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
9 lines
245 B
TypeScript
9 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");
|
|
}
|
|
});
|