1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00

add on() to mock queue

This commit is contained in:
Rory Powell 2022-08-20 11:42:51 +01:00
parent 30901eb24e
commit 917bb96ae6

View file

@ -113,6 +113,10 @@ class InMemoryQueue {
async getJob() {
return {}
}
on() {
// do nothing
}
}
module.exports = InMemoryQueue