diff options
Diffstat (limited to 'cli/tests/testdata/runtime')
| -rw-r--r-- | cli/tests/testdata/runtime/esm_imports_a.js | 3 | ||||
| -rw-r--r-- | cli/tests/testdata/runtime/esm_imports_b.js | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/testdata/runtime/esm_imports_a.js b/cli/tests/testdata/runtime/esm_imports_a.js new file mode 100644 index 000000000..673cd9aa3 --- /dev/null +++ b/cli/tests/testdata/runtime/esm_imports_a.js @@ -0,0 +1,3 @@ +import { retb } from "./esm_imports_b.js"; + +if (retb() != "b") throw Error(); diff --git a/cli/tests/testdata/runtime/esm_imports_b.js b/cli/tests/testdata/runtime/esm_imports_b.js new file mode 100644 index 000000000..840121368 --- /dev/null +++ b/cli/tests/testdata/runtime/esm_imports_b.js @@ -0,0 +1,4 @@ +// deno-lint-ignore-file +export function retb() { + return "b"; +} |
