approvals
Version:
Approval Tests Library - Capturing Human Intelligence
16 lines (15 loc) • 680 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ManualNamer = void 0;
const Namer_1 = require("./Namer");
class ManualNamer extends Namer_1.Namer {
constructor(dirName, testFileName) {
super(dirName, testFileName);
// Redefining these properties is actually redundant here because the superclass constructor
// already sets them based on the arguments provided. You might want to remove these lines
// unless there is some side effect or behavior in the superclass constructor that requires them.
this.basePath = dirName;
this.name = testFileName;
}
}
exports.ManualNamer = ManualNamer;