1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

add on() to mock queue

This commit is contained in:
Rory Powell 2022-08-20 11:42:51 +01:00
parent 76bd1e0336
commit ec33a47999

View file

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