1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-14 04:19:22 +00:00
Files
UXP/testing/mochitest/tests/browser/browser_fail_async_throw.js
T

8 lines
125 B
JavaScript

function test() {
function end() {
throw "thrown exception";
}
waitForExplicitFinish();
setTimeout(end, 1000);
}