diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/module_graph/file_tests-c-mod.ts | 1 | ||||
-rw-r--r-- | cli/tests/module_graph/file_tests-diag.ts | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-c-mod.ts b/cli/tests/module_graph/file_tests-c-mod.ts new file mode 100644 index 000000000..7f2cfac77 --- /dev/null +++ b/cli/tests/module_graph/file_tests-c-mod.ts @@ -0,0 +1 @@ +export const c = "c"; diff --git a/cli/tests/module_graph/file_tests-diag.ts b/cli/tests/module_graph/file_tests-diag.ts new file mode 100644 index 000000000..ba365234a --- /dev/null +++ b/cli/tests/module_graph/file_tests-diag.ts @@ -0,0 +1,4 @@ +import * as c from "./c/mod.ts"; + +// deno-lint-ignore no-undef +consol.log(c); |