Mocha 的expect.to.throw 出现丢失抛出错误的问题
当使用Chai 的expect.to.throw 测试节点中的异常时.js 应用程序,您可能会遇到意想不到的结果。如果测试因未捕获的错误而失败,但将测试包装在 try...catch 中并断言捕获的错误成功,您可能会质疑 Expect.to.throw 的功能。
问题的症结所在在于expect.to.throw的运作方式。为了有效地测试异常的发生,需要一个函数作为输入。通过将函数传递给expect,它可以调用该函数并验证是否引发异常。
在提供的代码片段中,您直接将 model.get('z') 的结果传递给expect 。但是,这种方法传递函数的返回值而不是函数本身。要纠正这个问题,您需要为expect提供一个在调用时执行model.get的函数。
更新的代码:
expect(model.get.bind(model, 'z')).to.throw('Property does not exist in model schema.'); expect(model.get.bind(model, 'z')).to.throw(new Error('Property does not exist in model schema.'));
通过使用bind方法,创建了一个新函数。调用时,它使用指定的参数调用 model.get,从而模拟 model.get('z') 的执行。这允许expect.to.throw评估函数执行过程中是否抛出异常。
以上是为什么 Mocha 的 Expect.to.throw 无法捕获我的预期错误?的详细内容。更多信息请关注PHP中文网其他相关文章!