Files
UXP-Fixed/testing/mochitest/tests/browser/browser_sanityException2.js
T
2018-02-02 04:16:08 -05:00

12 lines
236 B
JavaScript

function test() {
waitForExplicitFinish();
ok(true, "ok called");
executeSoon(function() {
expectUncaughtException();
throw "this is a deliberately thrown exception";
});
executeSoon(function() {
finish();
});
}