QUnit.onUncaughtException()

添加的版本:2.17.0

说明

QUnit.onUncaughtException( error )

处理应该导致测试运行失败的全局错误。

名字 说明
error(任意) 通常是一个Error 对象,但也可以给出任何其他抛出或拒绝的值。

例子

const error = new Error('Failed to reverse the polarity of the neutron flow');
QUnit.onUncaughtException(error);
process.on('uncaughtException', QUnit.onUncaughtException);
window.addEventListener('unhandledrejection', function (event) {
  QUnit.onUncaughtException(event.reason);
});