Forum Discussion
chrisb
12 years agoRegular Contributor
The test runner doesn't catch JavaScript runtime errors. You need to implement something yourself. You can put your test script inside a try catch block to handle them.
function myTestScript() {
try {
//test script
} catch (e) {
Log.Error(e);
}
}