diff options
Diffstat (limited to 'cli/tests/testdata/coverage/no_transpiled_lines')
5 files changed, 0 insertions, 24 deletions
diff --git a/cli/tests/testdata/coverage/no_transpiled_lines/expected.lcov b/cli/tests/testdata/coverage/no_transpiled_lines/expected.lcov deleted file mode 100644 index 480945d14..000000000 --- a/cli/tests/testdata/coverage/no_transpiled_lines/expected.lcov +++ /dev/null @@ -1,10 +0,0 @@ -SF:[WILDCARD]index.ts -FNF:0 -FNH:0 -BRF:0 -BRH:0 -DA:1,1 -DA:3,1 -LH:2 -LF:2 -end_of_record diff --git a/cli/tests/testdata/coverage/no_transpiled_lines/expected.out b/cli/tests/testdata/coverage/no_transpiled_lines/expected.out deleted file mode 100644 index 3438a045c..000000000 --- a/cli/tests/testdata/coverage/no_transpiled_lines/expected.out +++ /dev/null @@ -1 +0,0 @@ -cover [WILDCARD]index.ts ... 100.000% (2/2) diff --git a/cli/tests/testdata/coverage/no_transpiled_lines/index.ts b/cli/tests/testdata/coverage/no_transpiled_lines/index.ts deleted file mode 100644 index 7e4f22163..000000000 --- a/cli/tests/testdata/coverage/no_transpiled_lines/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export { assertStrictEquals } from "../../../../../test_util/std/assert/mod.ts"; - -export * from "./interface.ts"; diff --git a/cli/tests/testdata/coverage/no_transpiled_lines/interface.ts b/cli/tests/testdata/coverage/no_transpiled_lines/interface.ts deleted file mode 100644 index 6e58a7b2f..000000000 --- a/cli/tests/testdata/coverage/no_transpiled_lines/interface.ts +++ /dev/null @@ -1,3 +0,0 @@ -export interface TestInterface { - id: string; -} diff --git a/cli/tests/testdata/coverage/no_transpiled_lines/repro_test.ts b/cli/tests/testdata/coverage/no_transpiled_lines/repro_test.ts deleted file mode 100644 index ca4a0d17f..000000000 --- a/cli/tests/testdata/coverage/no_transpiled_lines/repro_test.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { assertStrictEquals, TestInterface } from "./index.ts"; - -Deno.test(function noTranspiledLines() { - const foo: TestInterface = { id: "id" }; - - assertStrictEquals(foo.id, "id"); -}); |