mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
/**
|
|
* ```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",
|
|
);
|
|
});
|