mirror of https://github.com/webpack/webpack.git
7 lines
227 B
JavaScript
7 lines
227 B
JavaScript
|
|
it("should be able to load the split chunk on demand", () => {
|
||
|
|
const promise = import(/* webpackChunkName: "shared" */ "./shared");
|
||
|
|
|
||
|
|
const script = document.head._children[0];
|
||
|
|
expect(script.src).toBe("dep~b~shared.js");
|
||
|
|
});
|