webpack/test/cases/runtime/missing-module-syntax-error/index.js

12 lines
148 B
JavaScript

it("should have correct error code", function() {
try {
require("./module");
} catch(e) {
expect(e.code).toBe("MODULE_NOT_FOUND");
}
});