blob: 467d850a27fb1d5c2cc1101f979e214730d64fdf (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* ```ts
* import "./mod.ts";
* ```
*/
Deno.test("unreachable", function () {
throw new Error(
"modules that don't end with _test are scanned for documentation tests only should not be executed",
);
});
|