You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by lo...@apache.org on 2014/08/21 20:48:15 UTC

git commit: [CB-7355] removed create tests which test behaviour of downstream dependencies

Repository: cordova-cli
Updated Branches:
  refs/heads/master 131123348 -> a3f374b6a


[CB-7355] removed create tests which test behaviour of downstream dependencies

the test pass/fail condition relies on specific output from external libraries (cordova-lib).


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/a3f374b6
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/a3f374b6
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/a3f374b6

Branch: refs/heads/master
Commit: a3f374b6aa36688ac2050ee8dbd876ff2f31ea95
Parents: 1311233
Author: Lorin Beer <lo...@gmail.com>
Authored: Thu Aug 21 11:48:02 2014 -0700
Committer: Lorin Beer <lo...@gmail.com>
Committed: Thu Aug 21 11:48:02 2014 -0700

----------------------------------------------------------------------
 spec/cli.spec.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/a3f374b6/spec/cli.spec.js
----------------------------------------------------------------------
diff --git a/spec/cli.spec.js b/spec/cli.spec.js
index 90c34a7..38f5bac 100644
--- a/spec/cli.spec.js
+++ b/spec/cli.spec.js
@@ -41,7 +41,6 @@ describe("cordova cli", function () {
             var version = require("../package").version;
 
             beforeEach(function () {
-                spyOn(console, "log").andCallFake(function(){});
             });
 
             it("will spit out the version with -v", function () {
@@ -98,6 +97,7 @@ describe("cordova cli", function () {
 
     });
 
+/*
     describe("create args", function () {
         beforeEach(function () {
             spyOn(cordova.raw, "create").andReturn(Q());
@@ -119,7 +119,7 @@ describe("cordova cli", function () {
             expect(cordova.raw.create).toHaveBeenCalledWith("a","b","c", jasmine.any(Object));
         });
     });
-
+*/
     describe("plugin", function () {
         beforeEach(function () {
             spyOn(cordova.raw, "plugin").andReturn(Q());