mirror of https://github.com/webpack/webpack.git
fixed common-chunk-grandchildren example
* fixed README.md * pass error to done in test
This commit is contained in:
parent
87bff6cd98
commit
f63b17245e
File diff suppressed because it is too large
Load Diff
|
@ -1 +1,2 @@
|
||||||
|
global.NO_TARGET_ARGS = true;
|
||||||
require("../build-common");
|
require("../build-common");
|
||||||
|
|
|
@ -7,6 +7,6 @@ it("should correctly include indirect children in common chunk", function(done)
|
||||||
imports[1].default.should.be.eql("reuse");
|
imports[1].default.should.be.eql("reuse");
|
||||||
done();
|
done();
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
done();
|
done(e);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue