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