assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertActualIsNotMatching = void 0;
const assertStringIsNotMatchingRegExp_1 = require("../../forStrings/assertStringIsNotMatchingRegExp");
const assertActualIsNotMatching = function (actual, expected) {
return (0, assertStringIsNotMatchingRegExp_1.assertStringIsNotMatchingRegExp)(actual, expected);
};
exports.assertActualIsNotMatching = assertActualIsNotMatching;