* fix: [#10561] _interopRequireWildcard should cache object only * fix: narrow down cache restriction to object/function type * test: add interop require null module case
4 lines
85 B
JavaScript
4 lines
85 B
JavaScript
return import("./mod.js").then(({ default: def }) => {
|
|
expect(def).toBe(null);
|
|
});
|