0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/test/doc_only/mod.ts

11 lines
218 B
TypeScript
Raw Normal View History

/**
* ```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",
);
});