aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/esm/second.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets/esm/second.mjs')
-rw-r--r--integration/bunjs-only-snippets/esm/second.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/esm/second.mjs b/integration/bunjs-only-snippets/esm/second.mjs
new file mode 100644
index 000000000..888eb11b9
--- /dev/null
+++ b/integration/bunjs-only-snippets/esm/second.mjs
@@ -0,0 +1,7 @@
+import { start, end } from "./startEnd.mjs";
+
+start("Second");
+
+import "./second-child.mjs";
+
+end("Second");