definition-tester
Version:
DefinitelyTyped repository testing infrastructure
18 lines • 746 B
JavaScript
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var TestSuiteBase_1 = require('../suite/TestSuiteBase');
var endTestDts = /\w-tests?(\.es6)?\.tsx?$/i;
var TestEval = (function (_super) {
__extends(TestEval, _super);
function TestEval(options) {
_super.call(this, options, 'Typing tests', 'Failed tests');
}
return TestEval;
}(TestSuiteBase_1.default));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = TestEval;
//# sourceMappingURL=EvalSuite.js.map