aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/esm/second-child.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/esm/second-child.mjs')
-rw-r--r--test/bun.js/esm/second-child.mjs5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/bun.js/esm/second-child.mjs b/test/bun.js/esm/second-child.mjs
new file mode 100644
index 000000000..5fb06ed45
--- /dev/null
+++ b/test/bun.js/esm/second-child.mjs
@@ -0,0 +1,5 @@
+import { start, end } from "./startEnd.mjs";
+
+start("Second (nested import)");
+
+end("Second (nested import)");