chrec-core
Version:
ChRec's core business logic and model for testing HTML locator robustness
11 lines (10 loc) • 339 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const identififable_1 = require("./identififable");
class LocatorTestResult extends identififable_1.Identificable {
constructor(replayable, id) {
super(id);
this.replayable = replayable;
}
}
exports.LocatorTestResult = LocatorTestResult;