1
0
Fork 0
mirror of synced 2024-08-19 03:51:29 +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() { async getJob() {
return {} return {}
} }
on() {
// do nothing
}
} }
module.exports = InMemoryQueue module.exports = InMemoryQueue