assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertActualIsNotThrowing = void 0;
const assertFunctionIsNotThrowing_1 = require("../../forFunctions/assertFunctionIsNotThrowing");
const assertActualIsNotThrowing = function (actual, expected) {
return (0, assertFunctionIsNotThrowing_1.assertFunctionIsNotThrowing)(actual, expected);
};
exports.assertActualIsNotThrowing = assertActualIsNotThrowing;