mirror of https://github.com/webpack/webpack.git
6 lines
126 B
JavaScript
6 lines
126 B
JavaScript
|
it("should get valid export from library", () => {
|
||
|
return import("library").then(({ a }) => {
|
||
|
expect(a).toBe(42);
|
||
|
});
|
||
|
});
|