diff options
Diffstat (limited to 'tests/testdata/coverage/no_transpiled_lines/repro_test.ts')
-rw-r--r-- | tests/testdata/coverage/no_transpiled_lines/repro_test.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/testdata/coverage/no_transpiled_lines/repro_test.ts b/tests/testdata/coverage/no_transpiled_lines/repro_test.ts new file mode 100644 index 000000000..ca4a0d17f --- /dev/null +++ b/tests/testdata/coverage/no_transpiled_lines/repro_test.ts @@ -0,0 +1,7 @@ +import { assertStrictEquals, TestInterface } from "./index.ts"; + +Deno.test(function noTranspiledLines() { + const foo: TestInterface = { id: "id" }; + + assertStrictEquals(foo.id, "id"); +}); |