@typed/test
Version:
Simple test framework
10 lines • 327 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var AssertionError_1 = require("./AssertionError");
function ok(actual) {
if (actual)
return actual;
throw new AssertionError_1.AssertionError("Value is not truthy", true, actual, ok);
}
exports.ok = ok;
//# sourceMappingURL=ok.js.map