import { assertFunctionIsNotThrowing } from '../../forFunctions/assertFunctionIsNotThrowing'; import { AssertionFailed } from '../../../errors'; import { Result } from 'defekt'; const assertActualIsNotThrowing = function ( actual: (...args: any[]) => any, expected?: string | RegExp | ((ex: TError) => boolean) ): Result { return assertFunctionIsNotThrowing(actual, expected); }; export { assertActualIsNotThrowing };