我正在使用议程框架进行作业调度链接https://github.com/agenda/agenda
调度它向用户发送电子邮件的工作,它工作正常,但我想为当前代码编写单元测试。任何帮助表示赞赏
此作业作为进程运行,例如节点作业名
module.exports = function (agenda) {
agenda.define('sendemail', function (task, done) {
// Sending email logic here
})
// Success event when job run successfully,
agenda.on('success:sendemail', function (task) {
// send email to admin job run successfully
})
// Fail event when job failed
agenda.on('fail:sendemail', function (err, task) {
// send email to admin job failed
})
// Run sendemail job
agenda.on('ready', function () {
agenda.schedule('in 5 seconds', 'sendemail', {
time: new Date()
})
agenda.start()
})
}
sendemail 有不同的状态成功,失败用于使用 AWS SES 服务发送电子邮件。想为上述代码编写单元测试,并想验证作业是成功还是失败。