mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d55444b41c
This commit omits files from the coverage report that have no lines of code to report coverage for. Fixes: https://github.com/denoland/deno/issues/14683
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { assertStrictEquals, TestInterface } from "./index.ts";
|
|
|
|
Deno.test(function noTranspiledLines() {
|
|
const foo: TestInterface = { id: "id" };
|
|
|
|
assertStrictEquals(foo.id, "id");
|
|
});
|