我无法为以下代码编写单元测试
import PushNotification from 'react-native-push-notification'
import { timeZoneForNotification } from '../Assets/Constants/constants'
import firebase from 'react-native-firebase'
export const scheduleNotification = ({
title = timeZoneForNotification.title,
message
},
date
) => {
PushNotification.localNotificationSchedule({ title, message, date })
}