I have written a scheduled function like described here: https://firebase.google.com/docs/functions/schedule-functions
How can I test this function now? When I wrap this function (as I would with any other cloud function), there is an error that says: "Property 'wrap' does not exist on type 'TestFunction'."
const functionWrapper = test.wrap(function);
Is there any other way to test these functions?