Confirm cron setting adds 7 hours.
before this change:
adding these lines to index.js:
```
const timeout = cron.timeout('0 0 * * *');
console.log(`The job would run in ${timeout}ms`);
```
console from `node.index.js`
`The job would run at: 2024-10-24T00:00:00.000-07:00`
after this change:
const timeout = cron.timeout('0 7 * * *');
console.log(`The job would run in ${timeout}ms`);
`The job would run at: 2024-10-24T07:00:00.000-07:00`