繁体   English   中英

使用 Jest 模拟方法时参数不可分配

[英]Argument not assignable when mocking method with Jest

我尝试模拟如下方法:

const mock = jest.spyOn(ReissueButton, 'consentGiven').mockResolvedValue(true);

它给了我这些错误:

'"consentGiven"' 类型的参数不可分配给 '"prototype" 类型的参数 | "contextType"'.ts(2345) 'true' 类型的参数不可分配给'ReissueButton | 类型的参数上下文 | PromiseLike<重发按钮 | 上下文 | 未定义> | 未定义'.ts(2345)

该方法返回一个真或假值。

这是方法:

consentGiven = () => {        
    const ref = crypto.createHash('sha1').update(this.props.policy).digest('hex');
    const consented = Cookies.get('CONSENT_' + ref) || null;

    if (consented === null) {
        return false;
    } else {
        return true;
    }
}

我究竟做错了什么?

该错误可能是因为您试图在不创建新实例的情况下监视类的非静态方法。 您可以监视类原型或将方法设为静态:

选项1

const mock = jest.spyOn(ReissueButton.prototype, 'consentGiven').mockResolvedValue(true);

选项 2

static consentGiven = () => {        
    const ref = crypto.createHash('sha1').update(this.props.policy).digest('hex');
    const consented = Cookies.get('CONSENT_' + ref) || null;

    if (consented === null) {
        return false;
    } else {
        return true;
    }
}

const mock = jest.spyOn(ReissueButton, 'consentGiven').mockResolvedValue(true);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM