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