Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 86E02200BA4 for ; Sat, 10 Sep 2016 01:22:34 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 85B4A160AC2; Fri, 9 Sep 2016 23:22:34 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D6FC5160ACA for ; Sat, 10 Sep 2016 01:22:33 +0200 (CEST) Received: (qmail 99814 invoked by uid 500); 9 Sep 2016 23:22:32 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 99793 invoked by uid 99); 9 Sep 2016 23:22:32 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Sep 2016 23:22:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B743AE0667; Fri, 9 Sep 2016 23:22:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: commits@cordova.apache.org Date: Fri, 09 Sep 2016 23:22:33 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [02/11] cordova-plugin-test-framework git commit: Add spec started/completed log archived-at: Fri, 09 Sep 2016 23:22:34 -0000 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 Authored: Wed Apr 13 11:04:41 2016 -0700 Committer: Nikhil Khandelwal 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