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