fixed common-chunk-grandchildren example

* fixed README.md
 * pass error to done in test
This commit is contained in:
Landon Crapo 2017-10-09 13:43:03 -06:00
parent 87bff6cd98
commit f63b17245e
3 changed files with 123 additions and 1743 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1 +1,2 @@
global.NO_TARGET_ARGS = true;
require("../build-common"); require("../build-common");

View File

@ -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);
}) })
}); });