gpt4 book ai didi

javascript - 在生成器中测试抛出错误?

转载 作者:行者123 更新时间:2023-11-28 20:39:01 25 4
gpt4 key购买 nike

我正在尝试使用 Jest 和 Chai 测试在生成器函数中抛出的错误,如下所示:

    // function

function * gen () {
yield put({ type: TIME_OUT_LOGOUT })
throw new Error('User has logged out')
}

//test

let genFunc = gen()

expect(genFunc().next).to.deep.equal(put({ type: TIME_OUT_LOGOUT }))

expect(genFunc().next).to.throw(Error('User has logged out'));

但它不起作用。哪种测试方法才是正确的?

最佳答案

尝试将您的测试代码从 genFunc().next 更改为 genFunc.next().value


编辑:

断言应该是:

expect(genFunc.next().value).toEqual(put({type: TIME_OUT_LOGOUT}));
期望(genFunc.next).toThrow(错误);

对于第二个断言 expect(() => genFunc.next()).toThrow(Error); 也可以,但是包装函数 () => genFunc.next () 是不必要的,因为 genFunc.next 不带任何参数。

关于javascript - 在生成器中测试抛出错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41382258/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com