kizu
Version:
An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.
49 lines • 2.14 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.isTrue = isTrue;
const util = __importStar(require("util"));
const kleur_1 = __importDefault(require("kleur"));
const AssertionError_1 = require("./AssertionError");
function isTrue(assertions, condition, description) {
const descWithDefault = description || 'isTrue()';
if (condition) {
assertions.push({ pass: true, description: descWithDefault });
}
else {
const diagnostic = createDiagnostic(condition);
const stack = new AssertionError_1.AssertionError('is not true').stack;
assertions.push({ pass: false, description: descWithDefault, diagnostic, stack });
}
}
function createDiagnostic(actual) {
const actualStr = util.inspect(actual, { colors: true, depth: null });
const sectionActual = `${kleur_1.default.grey().bold('Actual:')}\n\n${actualStr}`;
return `${sectionActual}\n`;
}
//# sourceMappingURL=isTrue.js.map