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