Add spec started/completed log This closes #19
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/commit/9d75c5df Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/tree/9d75c5df Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/diff/9d75c5df Branch: refs/heads/1.1.x Commit: 9d75c5df22870fe42f9f2dc31b0350cdee49bf4a Parents: 49212ca Author: Nikhil Khandelwal <[email protected]> Authored: Wed Apr 13 11:04:41 2016 -0700 Committer: Nikhil Khandelwal <[email protected]> Committed: Mon Apr 18 10:44:50 2016 -0700 ---------------------------------------------------------------------- www/assets/jasmine-medic.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/blob/9d75c5df/www/assets/jasmine-medic.js ---------------------------------------------------------------------- diff --git a/www/assets/jasmine-medic.js b/www/assets/jasmine-medic.js index 4194f3a..1b00c5b 100644 --- a/www/assets/jasmine-medic.js +++ b/www/assets/jasmine-medic.js @@ -64,7 +64,7 @@ jasmineRequire.MedicReporter = function(j$) { }; this.specStarted = function(result) { - // Start timing this spec + console.log('>>>>> Spec started: ' + result.description); }; this.specDone = function(result) { @@ -78,6 +78,7 @@ jasmineRequire.MedicReporter = function(j$) { if (result.status == "pending") { pendingSpecCount++; } + console.log('>>>>> Spec completed: ' + result.description); }; var buildResults = function(){ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
