webpack/test/hotCases/errors/decline/index.js

15 lines
397 B
JavaScript

import a from "./a";
it("should abort when module is declined by parent", (done) => {
expect(a).toBe(1);
NEXT(require("../../update")((err) => {
try {
expect(err.message).toMatch(/Aborted because of declined dependency: \.\/b\.js in \.\/a\.js/);
expect(err.message).toMatch(/Update propagation: \.\/c\.js -> \.\/b\.js -> \.\/a\.js/);
done();
} catch(e) {
done(e);
}
}));
});