We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5b1e86 + aa6de57 commit b1a640eCopy full SHA for b1a640e
test/cases/chunks/issue-5153/index.js
@@ -0,0 +1,7 @@
1
+import x from "./module";
2
+
3
+it("should export the same binding", () => {
4
+ return import("./module").then(ns => {
5
+ expect(x).toBe(ns.default);
6
+ });
7
+});
test/cases/chunks/issue-5153/module.js
@@ -0,0 +1 @@
+export default {};
0 commit comments