jam-my-stack/test/__mocks__/youtube-dl-exec.js

16 lines
316 B
JavaScript
Raw Normal View History

2021-06-15 14:14:14 +02:00
const stubimg = "https://brainbaking.com//img/avatar.jpg"
function youtubedl(url, options) {
return new Promise(function(resolve, reject) {
if(url.indexOf("exception") >= 0) {
console.log("STUB exception wanted, here you go ==>")
reject("BOOM")
}
resolve(stubimg)
})
}
module.exports = youtubedl