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 0FB38200C08 for ; Thu, 12 Jan 2017 02:14:24 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0E3C2160B52; Thu, 12 Jan 2017 01:14:24 +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 59A34160B51 for ; Thu, 12 Jan 2017 02:14:23 +0100 (CET) Received: (qmail 36691 invoked by uid 500); 12 Jan 2017 01:14:22 -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 36588 invoked by uid 99); 12 Jan 2017 01:14:22 -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; Thu, 12 Jan 2017 01:14:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 64BAFDFB8E; Thu, 12 Jan 2017 01:14:22 +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: Thu, 12 Jan 2017 01:14:24 -0000 Message-Id: <2d0f9c1918bf463fa60476135014efe0@git.apache.org> In-Reply-To: <49682aac23f04b9180da66856005a989@git.apache.org> References: <49682aac23f04b9180da66856005a989@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] cordova-cli git commit: CB-12018 : removed line 135 , test 011 still functions and runs without it archived-at: Thu, 12 Jan 2017 01:14:24 -0000 CB-12018 : removed line 135 , test 011 still functions and runs without it This closes #265 Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/d4d3389a Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/d4d3389a Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/d4d3389a Branch: refs/heads/master Commit: d4d3389a7ab33a2c7a97ebe894b964db36037a15 Parents: caa8306 Author: audreyso Authored: Wed Jan 11 14:58:14 2017 -0800 Committer: Steve Gill Committed: Wed Jan 11 17:13:50 2017 -0800 ---------------------------------------------------------------------- spec/cli.spec.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d4d3389a/spec/cli.spec.js ---------------------------------------------------------------------- diff --git a/spec/cli.spec.js b/spec/cli.spec.js index 6a6d2a4..81586ea 100644 --- a/spec/cli.spec.js +++ b/spec/cli.spec.js @@ -68,7 +68,7 @@ describe("cordova cli", function () { it("Test#002 : will spit out the version with --version", function (done) { cli(["node", "cordova", "--version"], function () { expect(logger.results.calls.mostRecent().args[0]).toMatch(version); - done() + done(); }, 60000); }); @@ -132,7 +132,6 @@ describe("cordova cli", function () { describe("create", function () { beforeEach(function () { spyOn(cordova.raw, "create").and.returnValue(Q()); - spyOn(cordova_lib, "CordovaError"); }); it("Test#011 : calls cordova raw create", function (done) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org