I am trying to run the code of the node cron job but it is not working when I specify the specific time. Below is the code.
var job = new cronJob({
cronTime: '00 01 16 * * 1-5',
onTick: function() {
console.log("hello");
},
start: true,
timeZone: 'America/Los_Angeles'
});
job.start();