diff options
Diffstat (limited to 'cli/tests/module_graph')
-rw-r--r-- | cli/tests/module_graph/file_tests-a.mjs | 3 | ||||
-rw-r--r-- | cli/tests/module_graph/file_tests-b.ts | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/module_graph/file_tests-a.mjs b/cli/tests/module_graph/file_tests-a.mjs new file mode 100644 index 000000000..72b3a67bc --- /dev/null +++ b/cli/tests/module_graph/file_tests-a.mjs @@ -0,0 +1,3 @@ +import * as b from "./b.ts"; + +console.log(b); diff --git a/cli/tests/module_graph/file_tests-b.ts b/cli/tests/module_graph/file_tests-b.ts new file mode 100644 index 000000000..59d168993 --- /dev/null +++ b/cli/tests/module_graph/file_tests-b.ts @@ -0,0 +1 @@ +export const b = "b"; |