export function mocked any>( f: T ): jest.MockedFunction { if (!jest.isMockFunction(f)) { throw new Error("Expected a mock, but found a real function."); } return f; }