Skip to content

Instantly share code, notes, and snippets.

@grossadamm
Created August 13, 2014 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grossadamm/570e032a8b144ec251c1 to your computer and use it in GitHub Desktop.
Save grossadamm/570e032a8b144ec251c1 to your computer and use it in GitHub Desktop.
jasmine-blanket.js for jasmine 2.0
(function() {
if (!jasmine) {
throw new Exception("jasmine library does not exist in global namespace!");
}
function elapsed(startTime, endTime) {
return (endTime - startTime) / 1000;
}
function ISODateString(d) {
function pad(n) {
return n < 10 ? '0' + n : n;
}
return d.getFullYear() + '-' + pad(d.getMonth() + 1) + '-' + pad(d.getDate()) + 'T' + pad(d.getHours()) + ':' + pad(d.getMinutes()) + ':'
+ pad(d.getSeconds());
}
function trim(str) {
return str.replace(/^\s+/, "").replace(/\s+$/, "");
}
function escapeInvalidXmlChars(str) {
return str.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace(/\>/g, "&gt;").replace(/\"/g, "&quot;").replace(/\'/g, "&apos;");
}
/**
* based on
* https://raw.github.com/larrymyers/jasmine-reporters/master/src/jasmine.junit_reporter.js
*/
var BlanketReporter = function(savePath, consolidate, useDotNotation) {
blanket.setupCoverage();
};
/*
from http://stackoverflow.com/questions/21420291/blanketjs-jasmine-2-0-not-working
*/
BlanketReporter.finished_at = null; // will be updated after all files have
// been written
BlanketReporter.prototype = {
specStarted : function(spec) {
blanket.onTestStart();
},
specDone : function(result) {
var passed = result.status === "passed" ? 1 : 0;
blanket.onTestDone(1, passed);
},
jasmineDone : function() {
blanket.onTestsDone();
},
log : function(str) {
var console = jasmine.getGlobal().console;
if (console && console.log) {
console.log(str);
}
}
};
// export public
jasmine.BlanketReporter = BlanketReporter;
// override existing jasmine execute
var originalJasmineExecute = jasmine.getEnv().execute;
// jasmine.getEnv().execute = function() {
// console.log("waiting for blanket...");
// };
blanket.beforeStartTestRunner({
checkRequirejs : true,
callback : function() {
jasmine.getEnv().addReporter(new jasmine.BlanketReporter());
jasmine.getEnv().execute = originalJasmineExecute;
jasmine.getEnv().execute();
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment