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);
});