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.
1 parent 5653732 commit aa6de57Copy full SHA for aa6de57
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