vendor/assets/libs/jasmine/boot.js in test_squad-0.0.1 vs vendor/assets/libs/jasmine/boot.js in test_squad-0.1.0
- old
+ new
@@ -60,10 +60,11 @@
* ## Reporters
* The `HtmlReporter` builds all of the HTML UI for the runner page. This reporter paints the dots, stars, and x's for specs, as well as all spec names and all failures (if any).
*/
var htmlReporter = new jasmine.HtmlReporter({
env: env,
- onRaiseExceptionsClick: function() { queryString.setParam("catch", !env.catchingExceptions()); },
+ onRaiseExceptionsClick: function() { queryString.navigateWithNewParam("catch", !env.catchingExceptions()); },
+ addToExistingQueryString: function(key, value) { return queryString.fullStringWithNewParam(key, value); },
getContainer: function() { return document.body; },
createElement: function() { return document.createElement.apply(document, arguments); },
createTextNode: function() { return document.createTextNode.apply(document, arguments); },
timer: new jasmine.Timer()
});