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

15 lines
377 B
JavaScript

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