我正在试图模仿sharp,我有这个:
// /__mocks__/sharp.js
const Sharp = jest.genMockFromModule('sharp')
Sharp.prototype.jpeg = function (options) { return this }
Sharp.prototype.trim = function (options) { return this }
Sharp.prototype.normalise = function (bln) { return this }
Sharp.prototype.background = function (colour) { return this }
Sharp.prototype.embed = function () { return this }
Sharp.prototype.clone = function () { return this }
Sharp.prototype.resize = function (width, height) { return this }
Sharp.prototype.toBuffer = function () {
return Buffer.from('')
}
export default Sharp
当我import sharp from 'sharp'
和console.log(sharp)
时,我得到了:
function Sharp() {return mockConstructor.apply(this,arguments);}
似乎没错,它找到了我的模拟模块,而不是真正的模块。
您可以像这样使用sharp
:
const sharpImage = sharp(input, options).jpeg(options).trim()
const myImageBuff = await sharpImage.toBuffer()
但是,当我使用我的模拟模块从测试代码中调用sharp()
时,它的值为undefined
,而不是instanceof sharp
。
我已尝试将const Sharp = jest.genMockFromModule('sharp')
替换为function Sharp (input, options) { return this }
,但这没有任何区别。
我做错了什么..?
答案 0 :(得分:0)
在sharp
构造函数中找到它。
https://github.com/lovell/sharp/blob/35117239144dcd085ecf653697df725b2f2e8fbb/lib/constructor.js#L97
所以我将const Sharp = jest.genMockFromModule('sharp')
换成了:
function Sharp (input, options) {
if (!(this instanceof Sharp)) {
return new Sharp(input, options)
}
return this
}
似乎工作......