mirror of https://github.com/webpack/webpack.git
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
|
|
import namespace from "./re-exports";
|
||
|
|
|
||
|
|
it("should mangle exports imported", () => {
|
||
|
|
const { foo } = namespace;
|
||
|
|
expect(foo).toBe('foo')
|
||
|
|
});
|