webpack/test/configCases/async-library/1-use-library/index.js

6 lines
126 B
JavaScript
Raw Permalink Normal View History

2021-08-16 13:07:24 +08:00
it("should get valid export from library", () => {
return import("library").then(({ a }) => {
expect(a).toBe(42);
});
});