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

6 lines
125 B
JavaScript

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