ts-snippet
Version:
A TypeScript snippet testing library for any test framework
13 lines (12 loc) • 346 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Expect = void 0;
var Expect = (function () {
function Expect(toFail, toInfer, toSucceed) {
this.toFail = toFail;
this.toInfer = toInfer;
this.toSucceed = toSucceed;
}
return Expect;
}());
exports.Expect = Expect;
;