I tried to create using wp_schedule_event() but that crons not visible in the list of events.
add_action('init','create_custom_cron_test');
function create_custom_cron_test(){
if (!wp_next_scheduled('wishlist_cron_job_test_fun')) {
//wp_schedule_event(time(), 'hourly', 'test_wishlist_cron_job');
wp_schedule_event(time(), 'every_three_minutes', 'wishlist_cron_job_test_fun');
// wp_schedule_event(strtotime('22:00:00'), 'daily', 'test_wishlist_cron_job');
}
}