qunit runner in autospec has been a mess, opening moves to get it working

This commit is contained in:
Sam Saffron
2017-04-30 19:45:19 -04:00
parent a4815047c0
commit dafc4ec906
2 changed files with 10 additions and 12 deletions

View File

@ -32,7 +32,9 @@ page.onConsoleMessage = function (message) {
page.onCallback = function (message) {
// write to the result file
if (message.slice(0, 5) === "FILE:") { fs.write(QUNIT_RESULT, message.slice(6), "a"); }
if (message.slice(0, 5) === "FAIL:") {
fs.write(QUNIT_RESULT, message.slice(6) + "\n", "a");
}
// forward the message to the standard output
if (message.slice(0, 6) === "PRINT:") { system.stdout.write(message.slice(7)); }
};
@ -131,12 +133,7 @@ function logQUnit() {
if (!errors[module][test]) { errors[module][test] = []; }
errors[module][test].push(assertion);
var fileName = context.source
.replace(/[^\S\n]+at[^\S\n]+/g, "")
.split("\n")[1]
.replace(/\?.+$/, "")
.replace(/^.+\/assets\//, "test/javascripts/");
window.callPhantom("FILE: " + fileName + " ");
window.callPhantom("FAIL: " + context.module + ":::" + context.testId + ":::" + context.name);
}
});