@teambit/jest
Version:
19 lines (17 loc) • 362 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.JestError = void 0;
class JestError extends Error {
constructor(message, stack, code, type) {
super(message);
this.code = code;
this.type = type;
}
get stack() {
return this.stack;
}
}
exports.JestError = JestError;
//# sourceMappingURL=error.js.map