webpack/test/configCases/graph/conditional-ensure/a.js

8 lines
188 B
JavaScript

import c1 from "./c1";
it("should allow to import an conditionally unneeded chunk", async () => {
const c2 = await c1();
const c1_ = await c2.default();
expect(c1_.value).toBe(1);
});