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