Fix for default state of exceptionCatching from HTML ui
This commit is contained in:
@@ -57,7 +57,9 @@
|
|||||||
getWindowLocation: function() { return window.location; }
|
getWindowLocation: function() { return window.location; }
|
||||||
});
|
});
|
||||||
|
|
||||||
env.catchExceptions(queryString.getParam("catch"));
|
// TODO: move all of catching to raise so we don't break our brains
|
||||||
|
var catchingExceptions = queryString.getParam("catch");
|
||||||
|
env.catchExceptions(typeof catchingExceptions === "undefined" ? true : catchingExceptions);
|
||||||
|
|
||||||
var htmlReporter = new jasmine.HtmlReporter({
|
var htmlReporter = new jasmine.HtmlReporter({
|
||||||
env: env,
|
env: env,
|
||||||
|
|||||||
Reference in New Issue
Block a user