definition-tester
Version:
DefinitelyTyped repository testing infrastructure
17 lines • 493 B
JavaScript
;
var TestResult = (function () {
function TestResult() {
this.attempts = 1;
}
Object.defineProperty(TestResult.prototype, "success", {
get: function () {
return this.diagnostics.length === 0;
},
enumerable: true,
configurable: true
});
return TestResult;
}());
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = TestResult;
//# sourceMappingURL=TestResult.js.map