webpack/test/configCases/target/chunk-loading-per-entry/webworker.js

8 lines
183 B
JavaScript

it("should allow to load a shared chunk in a WebWorker", async () => {
expect(await import(/* webpackChunkName: "chunk" */ "./chunk")).toEqual(
nsObj({
default: 42
})
);
});