From: Wolfram Schneider Date: Fri, 31 Jan 2014 11:52:34 +0000 (+0000) Subject: dump "mkws" object on error, and append it to the mkws-error.html page X-Git-Tag: 1.0.0~1544 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=defd59744d1d0569395de8d4a8c8943dcfd1bff8 dump "mkws" object on error, and append it to the mkws-error.html page --- diff --git a/test/phantom/evaluate.js b/test/phantom/evaluate.js index 309b9a8..b84c0c2 100644 --- a/test/phantom/evaluate.js +++ b/test/phantom/evaluate.js @@ -90,6 +90,7 @@ page.open(url, function (status) { console.log("MKWS tests are successfully done in " + result.time/1000 + " seconds. Hooray!"); console.log("jasmine duration: " + result.duration); console.log("jasmine passing: " + result.passing); + console.log("mkws: " + result.mkws_js); }, function (result) { @@ -101,8 +102,9 @@ page.open(url, function (status) { page.render(error_png); console.log("keep html DOM in '" + error_html + "'"); + var html = result.html + "\n\n\n"; var fs = require('fs'); - fs.write(error_html, result.html ? result.html : "Argh!", "wb"); + fs.write(error_html, html, "wb"); }, run_time * 1000); });