jest-metadata
Version:
🦸♂️ Superhero power for your Jest reporters! 🦸♀️
15 lines • 525 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HookInvocationMetadata = void 0;
const BaseMetadata_1 = require("./BaseMetadata");
class HookInvocationMetadata extends BaseMetadata_1.BaseMetadata {
definition;
parent;
constructor(context, definition, parent, id) {
super(context, id);
this.definition = definition;
this.parent = parent;
}
}
exports.HookInvocationMetadata = HookInvocationMetadata;
//# sourceMappingURL=HookInvocationMetadata.js.map