/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/workspaces/patch/add/mod.test.ts
9 строк
245 B
David Sherret
feat(unstable): ability to use a local copy of jsr packages (#25068)
20 авг 2024, 17:11
Не верифицирован
20 авг 2024, 17:11
f1c58ec
Код
Авторство
О чём код?
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"); } });