5 lines
136 B
JavaScript
5 lines
136 B
JavaScript
function test() {
|
|
ok(true, "ok called");
|
|
expectUncaughtException();
|
|
throw new Error("this is a deliberately thrown exception");
|
|
}
|