From defd59744d1d0569395de8d4a8c8943dcfd1bff8 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 31 Jan 2014 11:52:34 +0000 Subject: [PATCH] dump "mkws" object on error, and append it to the mkws-error.html page --- test/phantom/evaluate.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }); -- 1.7.10.4