You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/09/09 23:22:33 UTC

[02/11] cordova-plugin-test-framework git commit: Add spec started/completed log

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 <ni...@microsoft.com>
Authored: Wed Apr 13 11:04:41 2016 -0700
Committer: Nikhil Khandelwal <ni...@microsoft.com>
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: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org