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